diff options
-rw-r--r-- | textproc/ruby-libxml/Makefile | 8 | ||||
-rw-r--r-- | textproc/ruby-xslt/Makefile | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/textproc/ruby-libxml/Makefile b/textproc/ruby-libxml/Makefile index 8d745cb7cf43..00ba49901a22 100644 --- a/textproc/ruby-libxml/Makefile +++ b/textproc/ruby-libxml/Makefile @@ -25,4 +25,10 @@ USE_RUBY_EXTCONF= yes INSTALL_TARGET= site-install -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502126 +BROKEN= "Configure fails on FreeBSD >= 5.x" +.endif + +.include <bsd.port.post.mk> diff --git a/textproc/ruby-xslt/Makefile b/textproc/ruby-xslt/Makefile index 30fb9950b844..10bd5e450583 100644 --- a/textproc/ruby-xslt/Makefile +++ b/textproc/ruby-xslt/Makefile @@ -26,6 +26,12 @@ WRKSRC= ${WRKDIR}/ruby-${PORTNAME} DOCS= AUTHORS README docs/*.rd doc +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502126 +BROKEN= "Configure fails on FreeBSD >= 5.x" +.endif + post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${RUBY_MODDOCDIR} @@ -34,4 +40,4 @@ post-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |