mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-15 15:31:43 -04:00
46 lines
1.4 KiB
Ruby
46 lines
1.4 KiB
Ruby
$NetBSD: patch-lib_rubygems.rb,v 1.2 2015/03/08 15:08:33 taca Exp $
|
|
|
|
* Add install_root option for pkgsrc's rubygems support.
|
|
|
|
--- lib/rubygems.rb.orig 2014-02-06 02:59:36.000000000 +0000
|
|
+++ lib/rubygems.rb
|
|
@@ -257,10 +257,16 @@ module Gem
|
|
##
|
|
# The path where gem executables are to be installed.
|
|
|
|
- def self.bindir(install_dir=Gem.dir)
|
|
- return File.join install_dir, 'bin' unless
|
|
- install_dir.to_s == Gem.default_dir.to_s
|
|
- Gem.default_bindir
|
|
+ def self.bindir(install_dir=Gem.dir, install_root=nil)
|
|
+ if install_dir.to_s == Gem.default_dir.to_s
|
|
+ install_dir = Gem.default_bindir
|
|
+ else
|
|
+ install_dir = File.join install_dir, 'bin'
|
|
+ end
|
|
+ unless install_root.nil? or install_root.empty?
|
|
+ install_dir = File.join install_root, install_dir
|
|
+ end
|
|
+ install_dir
|
|
end
|
|
|
|
##
|
|
@@ -572,7 +578,7 @@ module Gem
|
|
# gem's paths are inserted before site lib directory by default.
|
|
|
|
def self.load_path_insert_index
|
|
- index = $LOAD_PATH.index RbConfig::CONFIG['sitelibdir']
|
|
+ index = $LOAD_PATH.index RbConfig::CONFIG['vendorlibdir']
|
|
|
|
index
|
|
end
|
|
@@ -743,7 +749,7 @@ module Gem
|
|
def self.prefix
|
|
prefix = File.dirname RUBYGEMS_DIR
|
|
|
|
- if prefix != File.expand_path(RbConfig::CONFIG['sitelibdir']) and
|
|
+ if prefix != File.expand_path(RbConfig::CONFIG['vendorlibdir']) and
|
|
prefix != File.expand_path(RbConfig::CONFIG['libdir']) and
|
|
'lib' == File.basename(RUBYGEMS_DIR) then
|
|
prefix
|