diff options
author | Jeremy Messenger <mezz@FreeBSD.org> | 2004-05-01 19:26:24 +0000 |
---|---|---|
committer | Jeremy Messenger <mezz@FreeBSD.org> | 2004-05-01 19:26:24 +0000 |
commit | 35bf36f9c0bfcbd1b2e6fc7d6c69b90219b78d83 (patch) | |
tree | fb84257d54832119e13b65ec9c20d546402a861d /x11 | |
parent | Define RUBY_SHEBANG_FILES. (diff) |
x11-toolkits/ruby-gtkglext:
-Mark it as INGORE on FreeBSD 4.x.
x11/ruby-gnome2-all:
-Disable the x11-toolkits/ruby-gtkglext depend on FreeBSD 4.x.
The issue is that the ruby can't be mix with and without threads (libc and
libc_r) in the same place on FreeBSD 4.x. FreeBSD 5.x doesn't has any of
problem.
Approved by: adamw (mentor)
Discussed with: knu
Notes
Notes:
svn path=/head/; revision=108105
Diffstat (limited to 'x11')
-rw-r--r-- | x11/ruby-gnome2-all/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/x11/ruby-gnome2-all/Makefile b/x11/ruby-gnome2-all/Makefile index d44a01edcb5d..4ce70372c1f8 100644 --- a/x11/ruby-gnome2-all/Makefile +++ b/x11/ruby-gnome2-all/Makefile @@ -23,7 +23,6 @@ RUN_DEPENDS+= ${RUBY_SITEARCHLIBDIR}/gtkhtml2.so:${PORTSDIR}/www/ruby-gtkhtml2 RUN_DEPENDS+= ${RUBY_SITEARCHLIBDIR}/gnomevfs.so:${PORTSDIR}/devel/ruby-gnomevfs #RUN_DEPENDS+= ${RUBY_SITEARCHLIBDIR}/gst.so:${PORTSDIR}/multimedia/ruby-gst RUN_DEPENDS+= ${RUBY_SITEARCHLIBDIR}/libgda.so:${PORTSDIR}/databases/ruby-libgda -RUN_DEPENDS+= ${RUBY_SITEARCHLIBDIR}/gtkglext.so:${PORTSDIR}/x11-toolkits/ruby-gtkglext # ruby-gst, wait for update to support gstreamer 0.8 API/ABI. @@ -33,7 +32,13 @@ USE_RUBY= yes NO_BUILD= yes +.include <bsd.port.pre.mk> + +.if ${OSVERSION} > 500000 +RUN_DEPENDS+= ${RUBY_SITEARCHLIBDIR}/gtkglext.so:${PORTSDIR}/x11-toolkits/ruby-gtkglext +.endif + do-install: @${DO_NADA} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |