diff options
author | swills <swills@FreeBSD.org> | 2015-04-05 13:55:11 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2015-04-05 13:55:11 +0800 |
commit | 5a9d7d9c3b95aff688f25ca0006d55ed8fc71507 (patch) | |
tree | f518e62722b0e09e152743709939e8c648f0af2d /databases | |
parent | 1bfd3e5f83ba0d63b998bfe7aa250977d6f08cbf (diff) | |
download | freebsd-ports-gnome-5a9d7d9c3b95aff688f25ca0006d55ed8fc71507.tar.gz freebsd-ports-gnome-5a9d7d9c3b95aff688f25ca0006d55ed8fc71507.tar.zst freebsd-ports-gnome-5a9d7d9c3b95aff688f25ca0006d55ed8fc71507.zip |
databases/postgresql-plruby: mark broken with ruby 2.2
While here, clean up plist a bit
Diffstat (limited to 'databases')
-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> |