Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
$NetBSD: patch-Rakefile,v 1.1.1.1 2011/02/25 02:34:13 obache Exp $
* install into vendorlibdir
* staged installation
--- Rakefile.orig 2009-08-08 14:36:30.000000000 +0000
+++ Rakefile
@@ -5,7 +5,10 @@ include Config
desc 'Install the memoize library (non-gem)'
task :install do
- sitelibdir = CONFIG['sitelibdir']
+ sitelibdir = CONFIG['vendorlibdir']
+ if (destdir = ENV['DESTDIR'])
+ sitelibdir = File.join(destdir, sitelibdir)
+ end
file = 'lib/memoize.rb'
FileUtils.cp(file, sitelibdir, :verbose => true)
end