summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaleb Tennis <caleb@gentoo.org>2005-04-14 13:17:32 +0000
committerCaleb Tennis <caleb@gentoo.org>2005-04-14 13:17:32 +0000
commite9c625156c0eba6bd01a621c17652ad78e074fdf (patch)
treee8ab40c89fe8268edef6d31ef9ccfda6ac20cb68 /dev-ruby/rubygems
parentRemoving older version (diff)
downloadgentoo-2-e9c625156c0eba6bd01a621c17652ad78e074fdf.tar.gz
gentoo-2-e9c625156c0eba6bd01a621c17652ad78e074fdf.tar.bz2
gentoo-2-e9c625156c0eba6bd01a621c17652ad78e074fdf.zip
one more
(Portage version: 2.0.51.19)
Diffstat (limited to 'dev-ruby/rubygems')
-rw-r--r--dev-ruby/rubygems/files/rubygems-0.8.1-gentoo.diff46
1 files changed, 0 insertions, 46 deletions
diff --git a/dev-ruby/rubygems/files/rubygems-0.8.1-gentoo.diff b/dev-ruby/rubygems/files/rubygems-0.8.1-gentoo.diff
deleted file mode 100644
index 10e501c290ae..000000000000
--- a/dev-ruby/rubygems/files/rubygems-0.8.1-gentoo.diff
+++ /dev/null
@@ -1,46 +0,0 @@
---- install.rb.ORIG 2004-09-12 16:24:57.000000000 +0900
-+++ install.rb 2004-11-20 02:46:54.000000000 +0900
-@@ -5,6 +5,10 @@
-
- include Config
-
-+CONFIG["bindir"].gsub!(/^/, ENV['D'])
-+CONFIG["libdir"].gsub!(/^/, ENV['D'])
-+CONFIG["sitedir"].gsub!(/^/, ENV['D'])
-+
- $srcdir = CONFIG["srcdir"]
- $version = CONFIG["MAJOR"]+"."+CONFIG["MINOR"]
- $libdir = File.join(CONFIG["libdir"], "ruby", $version)
-@@ -15,6 +19,7 @@
- elsif $site_libdir !~ Regexp.new(Regexp.quote($version))
- $site_libdir = File.join($site_libdir, $version)
- end
-+$site_libdir.gsub!(/^/, ENV['D'])
-
- def remove_stubs
- is_apparent_stub = lambda { |path|
-@@ -108,6 +113,7 @@
- ## Install the 'bin' files.
-
- bindir = CONFIG['bindir']
-+ File::makedirs(bindir)
- ruby_install_name = CONFIG['ruby_install_name']
- is_windows_platform = CONFIG["arch"] =~ /dos|win32/i
- Find.find('bin') do |f|
-@@ -120,7 +126,7 @@
- target = File.join(bindir, File.basename(f))
- File.open(target, "w", 0755) do |script|
- sourcelines = File.read(source)
-- sourcelines.gsub!(/\#!\/usr\/bin\/env ruby/, "\#!#{bindir}/#{ruby_install_name}")
-+ #sourcelines.gsub!(/\#!\/usr\/bin\/env ruby/, "\#!#{bindir}/#{ruby_install_name}")
- script.write sourcelines
- end
- if is_windows_platform
---- packages/sources/sources.gemspec 2003-11-23 03:58:46.000000000 +0900
-+++ packages/sources/sources.gemspec 2004-08-25 01:26:12.165799264 +0900
-@@ -1,4 +1,4 @@
--$:.unshift '../lib'
-+$:.unshift '../../lib'
- require 'rubygems'
-
- module Gem