Rename package OBS-URL: https://build.opensuse.org/request/show/283870 OBS-URL: https://build.opensuse.org/package/show/Application:Geo/geos?expand=0&rev=1
49 lines
2.4 KiB
Diff
49 lines
2.4 KiB
Diff
Description: Fix libtool in order to avoid a FTBFS.
|
|
RUBY_EXTENSION_DIR fix by Christian Hofstaedtler <zeha@debian.org>.
|
|
Author: Francesco Paolo Lovergine <frankie@debian.org>
|
|
Bug-Debian: https://bugs.debian.org/735652
|
|
--- a/swig/ruby/Makefile.am
|
|
+++ b/swig/ruby/Makefile.am
|
|
@@ -22,7 +22,7 @@ INCLUDES = -I$(RUBY_INCLUDE_DIR) -I$(RUB
|
|
# Build Ruby module as shared library
|
|
rubyextensiondir_LTLIBRARIES = geos.la
|
|
geos_la_SOURCES = geos_wrap.cxx
|
|
-geos_la_LIBADD = $(top_builddir)/capi/libgeos_c.la -l$(RUBY_SO_NAME)
|
|
+geos_la_LIBADD = $(top_builddir)/capi/libgeos_c.la /usr/lib/$(RUBY_SO_NAME)
|
|
|
|
# Only need to grab the capi header files
|
|
geos_la_CPPFLAGS = -I$(top_builddir)/capi
|
|
--- a/swig/ruby/Makefile.in
|
|
+++ b/swig/ruby/Makefile.in
|
|
@@ -334,7 +334,7 @@ MAINTAINERCLEANFILES = geos_wrap.cxx
|
|
# Build Ruby module as shared library
|
|
@ENABLE_RUBY_TRUE@rubyextensiondir_LTLIBRARIES = geos.la
|
|
@ENABLE_RUBY_TRUE@geos_la_SOURCES = geos_wrap.cxx
|
|
-@ENABLE_RUBY_TRUE@geos_la_LIBADD = $(top_builddir)/capi/libgeos_c.la -l$(RUBY_SO_NAME)
|
|
+@ENABLE_RUBY_TRUE@geos_la_LIBADD = $(top_builddir)/capi/libgeos_c.la /usr/lib/$(RUBY_SO_NAME)
|
|
|
|
# Only need to grab the capi header files
|
|
@ENABLE_RUBY_TRUE@geos_la_CPPFLAGS = -I$(top_builddir)/capi
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -17097,7 +17097,7 @@ fi
|
|
|
|
RUBY_LIB_DIR=`$RUBY -rrbconfig -e 'puts RbConfig::CONFIG["libdir"] || Config::CONFIG["libdir"]'`
|
|
|
|
- RUBY_EXTENSION_DIR=`$RUBY -rrbconfig -e 'puts RbConfig::CONFIG["sitearchdir"] || Config::CONFIG["sitearchdir"]'`
|
|
+ RUBY_EXTENSION_DIR=`$RUBY -rrbconfig -e 'puts RbConfig::CONFIG["vendorarchdir"] || Config::CONFIG["vendorarchdir"]'`
|
|
|
|
RUBY_SO_NAME=`$RUBY -rrbconfig -e 'puts RbConfig::CONFIG["LIBRUBY_SO"] || Config::CONFIG["RUBY_SO_NAME"]'`
|
|
|
|
--- a/macros/ruby.m4
|
|
+++ b/macros/ruby.m4
|
|
@@ -35,7 +35,7 @@ AC_DEFUN([AC_RUBY_DEVEL],
|
|
RUBY_LIB_DIR=`$RUBY -rrbconfig -e 'puts RbConfig::CONFIG[["libdir"]] || Config::CONFIG[["libdir"]]'`
|
|
|
|
dnl Get Ruby extensions directory
|
|
- RUBY_EXTENSION_DIR=`$RUBY -rrbconfig -e 'puts RbConfig::CONFIG[["sitearchdir"]] || Config::CONFIG[["sitearchdir"]]'`
|
|
+ RUBY_EXTENSION_DIR=`$RUBY -rrbconfig -e 'puts RbConfig::CONFIG[["vendorarchdir"]] || Config::CONFIG[["vendorarchdir"]]'`
|
|
|
|
dnl Get Ruby shared library name, this does not include the lib prefix or extension name
|
|
RUBY_SO_NAME=`$RUBY -rrbconfig -e 'puts RbConfig::CONFIG[["LIBRUBY_SO"]] || Config::CONFIG[["RUBY_SO_NAME"]]'`
|