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

ba7b08
diff --git a/bindings/Makefile.am b/bindings/Makefile.am
ba7b08
index c4fdc10..247fe58 100644
ba7b08
--- a/bindings/Makefile.am
ba7b08
+++ b/bindings/Makefile.am
ba7b08
@@ -22,14 +22,12 @@ all-local:  @COMP_PERL@ @COMP_RUBY@ @COMP_PYTHON@
ba7b08
 install-data-local:
ba7b08
 	$(AM_V_GEN)test -f perl-piped/Makefile && cd perl-piped && $(MAKE) install || true
ba7b08
 	$(AM_V_GEN)test -f perl-shared/Makefile && cd perl-shared && $(MAKE) install || true
ba7b08
-	$(AM_V_GEN)test -f ruby/Makefile && cd ruby && $(MAKE) EPREFIX=$(DESTDIR)$(exec_prefix) $(RUBY_MAKE_OPTIONS) install || true
ba7b08
+	$(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
ba7b08
 	$(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
ba7b08
 
ba7b08
 # rules for building the ruby module
ba7b08
-# RUBYARCHDIR= is to work around in a makefile quirk not sure 
ba7b08
-# it is is the right thing todo, but it makes rrdtool build on freebsd as well
ba7b08
 ruby:   Makefile
ba7b08
-	cd ruby && $(RUBY) extconf.rb && $(MAKE) EPREFIX=$(exec_prefix) $(RUBY_MAKE_OPTIONS) RUBYARCHDIR=
ba7b08
+	cd ruby && $(RUBY) extconf.rb && $(MAKE) EPREFIX=$(exec_prefix) $(RUBY_MAKE_OPTIONS) hdrdir="$(includedir)" rubyhdrdir="$(includedir)" includedir="$(includedir)"
ba7b08
 
ba7b08
 # rules for building the pyton module
ba7b08
 python: Makefile