diff options
author | Steve Wills <swills@FreeBSD.org> | 2015-04-05 05:55:11 +0000 |
---|---|---|
committer | Steve Wills <swills@FreeBSD.org> | 2015-04-05 05:55:11 +0000 |
commit | e5b37dc7f92d661786bf752855375601c1149681 (patch) | |
tree | f518e62722b0e09e152743709939e8c648f0af2d | |
parent | acec22a046a5889dfda7debfcf4a2f3a7f5337a7 (diff) | |
download | ports-e5b37dc7f92d661786bf752855375601c1149681.tar.gz ports-e5b37dc7f92d661786bf752855375601c1149681.zip |
Notes
-rw-r--r-- | databases/postgresql-plruby/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/databases/postgresql-plruby/Makefile b/databases/postgresql-plruby/Makefile index 68e0e9070efd..a36ace5e6d52 100644 --- a/databases/postgresql-plruby/Makefile +++ b/databases/postgresql-plruby/Makefile @@ -58,10 +58,12 @@ post-install: cd ${WRKSRC}/ && ${COPYTREE_SHARE} docs/doc ${STAGEDIR}${RUBY_MODDOCDIR}/ README.markdown && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${RUBY_MODDOCDIR}/ ${FIND} -ds ${STAGEDIR}${RUBY_MODDOCDIR} -type f -print | ${SED} -E -e \ 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST} - ${FIND} -ds ${STAGEDIR}${RUBY_MODDOCDIR} -type d -print | ${SED} -E -e \ - 's,^${STAGEDIR}${PREFIX}/?,@dirrm ,' >> ${TMPPLIST} - ${ECHO_CMD} "@unexec rmdir %D/share/doc/ruby19/ 2>/dev/null || true" \ - >> ${TMPPLIST} .endif -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${RUBY_VER} >= 2.2 +BROKEN= Does not build +.endif + +.include <bsd.port.post.mk> |