Blame SOURCES/rrdtool-1.4.7-ruby-2-fix.patch

687b7c
diff --git a/bindings/Makefile.am b/bindings/Makefile.am
687b7c
index c4fdc10..247fe58 100644
687b7c
--- a/bindings/Makefile.am
687b7c
+++ b/bindings/Makefile.am
687b7c
@@ -22,14 +22,12 @@ all-local:  @COMP_PERL@ @COMP_RUBY@ @COMP_PYTHON@
687b7c
 install-data-local:
687b7c
 	$(AM_V_GEN)test -f perl-piped/Makefile && cd perl-piped && $(MAKE) install || true
687b7c
 	$(AM_V_GEN)test -f perl-shared/Makefile && cd perl-shared && $(MAKE) install || true
687b7c
-	$(AM_V_GEN)test -f ruby/Makefile && cd ruby && $(MAKE) EPREFIX=$(DESTDIR)$(exec_prefix) $(RUBY_MAKE_OPTIONS) install || true
687b7c
+	$(AM_V_GEN)test -f ruby/Makefile && $(MKDIR_P) $(DESTDIR)$(libdir)/ruby/vendor_ruby && cd ruby && $(MAKE) EPREFIX=$(DESTDIR)$(exec_prefix) $(RUBY_MAKE_OPTIONS) hdrdir="$(includedir)" rubyhdrdir="$(includedir)" includedir="$(includedir)" install || true
687b7c
 	$(AM_V_GEN)test -d python/build && cd python && env BUILDLIBDIR=../../src/.libs $(PYTHON) setup.py install --skip-build --prefix=$(DESTDIR)$(prefix) --exec-prefix=$(DESTDIR)$(exec_prefix) || true
687b7c
 
687b7c
 # rules for building the ruby module
687b7c
-# RUBYARCHDIR= is to work around in a makefile quirk not sure 
687b7c
-# it is is the right thing todo, but it makes rrdtool build on freebsd as well
687b7c
 ruby:   Makefile
687b7c
-	cd ruby && $(RUBY) extconf.rb && $(MAKE) EPREFIX=$(exec_prefix) $(RUBY_MAKE_OPTIONS) RUBYARCHDIR=
687b7c
+	cd ruby && $(RUBY) extconf.rb && $(MAKE) EPREFIX=$(exec_prefix) $(RUBY_MAKE_OPTIONS) hdrdir="$(includedir)" rubyhdrdir="$(includedir)" includedir="$(includedir)"
687b7c
 
687b7c
 # rules for building the pyton module
687b7c
 python: Makefile