summaryrefslogtreecommitdiff
path: root/graphics/ruby-gimp/files
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/ruby-gimp/files')
-rw-r--r--graphics/ruby-gimp/files/patch-gimp::extconf.rb12
-rw-r--r--graphics/ruby-gimp/files/patch-gimpui::extconf.rb13
-rw-r--r--graphics/ruby-gimp/files/patch-plug-ins::eval.rb11
3 files changed, 36 insertions, 0 deletions
diff --git a/graphics/ruby-gimp/files/patch-gimp::extconf.rb b/graphics/ruby-gimp/files/patch-gimp::extconf.rb
new file mode 100644
index 000000000000..cff4a5c70049
--- /dev/null
+++ b/graphics/ruby-gimp/files/patch-gimp::extconf.rb
@@ -0,0 +1,12 @@
+--- gimp/extconf.rb.orig Fri Feb 23 04:53:23 2001
++++ gimp/extconf.rb Wed Feb 28 22:43:04 2001
+@@ -2,8 +2,8 @@
+ require '../mkmf_gimp.rb'
+
+ $CFLAGS += ' ' + GimpConfig::CFLAGS
++$LDFLAGS += ' ' + GimpConfig::LDFLAGS
+
+ if have_gimp_library("gimp", "gimp_main") and have_header("libgimp/gimp.h")
+-# $LDFLAGS += ' ' + GimpConfig::LDFLAGS
+ create_makefile("gimp")
+ end
diff --git a/graphics/ruby-gimp/files/patch-gimpui::extconf.rb b/graphics/ruby-gimp/files/patch-gimpui::extconf.rb
new file mode 100644
index 000000000000..880c373f8a30
--- /dev/null
+++ b/graphics/ruby-gimp/files/patch-gimpui::extconf.rb
@@ -0,0 +1,13 @@
+--- gimpui/extconf.rb.orig Fri Feb 23 04:55:36 2001
++++ gimpui/extconf.rb Wed Feb 28 22:42:45 2001
+@@ -2,9 +2,8 @@
+ require '../mkmf_gimp.rb'
+
+ $CFLAGS += ' ' + GimpConfig::CFLAGS
+-$LDFLAGS += ' -lgimp'
++$LDFLAGS += ' ' + GimpConfig::LDFLAGS
+
+ if have_gimp_library("gimpui", "gimp_ui_init") and have_header("libgimp/gimpui.h")
+-# $LDFLAGS += ' ' + GimpConfig::LDFLAGS
+ create_makefile("gimpui")
+ end
diff --git a/graphics/ruby-gimp/files/patch-plug-ins::eval.rb b/graphics/ruby-gimp/files/patch-plug-ins::eval.rb
new file mode 100644
index 000000000000..9a841276f6e2
--- /dev/null
+++ b/graphics/ruby-gimp/files/patch-plug-ins::eval.rb
@@ -0,0 +1,11 @@
+--- plug-ins/eval.rb.orig Tue Feb 27 20:08:13 2001
++++ plug-ins/eval.rb Thu Mar 1 01:29:43 2001
+@@ -13,7 +13,7 @@
+ "",
+ [
+ [RF_STRING, "code", "Code to eval", "", true],
+- ],
++ ]
+ ) { |text|
+ eval(text)
+ }