summaryrefslogtreecommitdiff
path: root/x11-toolkits/ruby-gtk2
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2002-06-03 10:53:48 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2002-06-03 10:53:48 +0000
commit0c978e48b0020d45b09b51056a3eec7f3aa23cdd (patch)
tree55fd5545c4c8ccbb2c7234a2041fccba5eacc17d /x11-toolkits/ruby-gtk2
parent#include <sys/param.h> instead of <machine/param.h> to fix build on (diff)
Update the Ruby/GNOME suite to 0.28.
Notes
Notes: svn path=/head/; revision=60524
Diffstat (limited to 'x11-toolkits/ruby-gtk2')
-rw-r--r--x11-toolkits/ruby-gtk2/files/patch-extconf.rb32
-rw-r--r--x11-toolkits/ruby-gtk2/pkg-plist1
2 files changed, 1 insertions, 32 deletions
diff --git a/x11-toolkits/ruby-gtk2/files/patch-extconf.rb b/x11-toolkits/ruby-gtk2/files/patch-extconf.rb
deleted file mode 100644
index 8134afd73c31..000000000000
--- a/x11-toolkits/ruby-gtk2/files/patch-extconf.rb
+++ /dev/null
@@ -1,32 +0,0 @@
---- extconf.rb.orig Wed Jan 9 05:21:22 2002
-+++ extconf.rb Wed Mar 20 22:12:37 2002
-@@ -8,24 +8,13 @@
- # detect GTK+ configurations
- #
- if /mswin32/ !~ PLATFORM
-- config_cmds = ["gtk-config"]
-- while /^--/ =~ ARGV[0]
-- ARGV.shift
-- end
-- if ARGV.size > 0
-- config_cmds.unshift(ARGV[0])
-- end
-+ config_cmd = with_config("gtk-config", "gtk-config")
-
- begin
-- config_cmds.each do |config_cmd|
-- version = `#{config_cmd} --version`
-- if not version.chomp.empty?
-- config_libs, config_cflags = "--libs", "--cflags"
-- $LDFLAGS, *libs = `#{config_cmd} #{config_libs}`.chomp.split(/(-l.*)/)
-- $libs = libs.join(' ') + ' ' + $libs
-- $CFLAGS = `#{config_cmd} #{config_cflags}`.chomp
-- break
-- end
-+ version = `#{config_cmd} --version`
-+ if not version.chomp.empty?
-+ $LDFLAGS += ' ' + `#{config_cmd} --libs`.chomp
-+ $CFLAGS += ' ' + `#{config_cmd} --cflags`.chomp
- end
- rescue
- $LDFLAGS = '-L/usr/X11R6/lib -L/usr/local/lib'
diff --git a/x11-toolkits/ruby-gtk2/pkg-plist b/x11-toolkits/ruby-gtk2/pkg-plist
index 7e3cad5a2766..dbf8bf0660cb 100644
--- a/x11-toolkits/ruby-gtk2/pkg-plist
+++ b/x11-toolkits/ruby-gtk2/pkg-plist
@@ -5,6 +5,7 @@
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/gtk/dnd.rb
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/gtk/drawing.rb
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/gtk/helloworld.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/gtk/item_factory.rb
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/gtk/keyboard_grab.rb
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/gtk/pointer_grab.rb
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/gtk/browser/gtkbrows.rb