diff options
author | taca <taca@pkgsrc.org> | 2004-02-20 14:18:07 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2004-02-20 14:18:07 +0000 |
commit | 8e99c9e1eb345939b8528c51631e9a135aebe8d0 (patch) | |
tree | 9e20d6f8cd51d580486739c663c306f90f723198 /textproc/ruby-rdtool | |
parent | 8675bd1845d575fc2bf7a2de05ff66a337eb5885 (diff) | |
download | pkgsrc-8e99c9e1eb345939b8528c51631e9a135aebe8d0.tar.gz |
Fix install error problem.
Diffstat (limited to 'textproc/ruby-rdtool')
-rw-r--r-- | textproc/ruby-rdtool/distinfo | 4 | ||||
-rw-r--r-- | textproc/ruby-rdtool/patches/patch-ac | 10 |
2 files changed, 9 insertions, 5 deletions
diff --git a/textproc/ruby-rdtool/distinfo b/textproc/ruby-rdtool/distinfo index a2b7e9a20ac..044b99ca972 100644 --- a/textproc/ruby-rdtool/distinfo +++ b/textproc/ruby-rdtool/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.7 2004/02/11 15:46:32 taca Exp $ +$NetBSD: distinfo,v 1.8 2004/02/20 14:18:07 taca Exp $ SHA1 (ruby/rdtool-0.6.14.tar.gz) = 6c61ffad85c62c7d3708c19a8793c1f8b395a1c0 Size (ruby/rdtool-0.6.14.tar.gz) = 58750 bytes -SHA1 (patch-ac) = ba37c47329e4165cef8ccd9985566661bfee4791 +SHA1 (patch-ac) = 1ad92ec36383855ed69dced37272962c387eaaaa diff --git a/textproc/ruby-rdtool/patches/patch-ac b/textproc/ruby-rdtool/patches/patch-ac index 673b8b6735c..d3d03b688d8 100644 --- a/textproc/ruby-rdtool/patches/patch-ac +++ b/textproc/ruby-rdtool/patches/patch-ac @@ -1,4 +1,4 @@ -$NetBSD: patch-ac,v 1.1 2004/02/11 15:46:32 taca Exp $ +$NetBSD: patch-ac,v 1.2 2004/02/20 14:18:07 taca Exp $ --- rdtoolconf.rb.orig 2003-03-08 21:45:07.000000000 +0900 +++ rdtoolconf.rb @@ -13,16 +13,20 @@ $NetBSD: patch-ac,v 1.1 2004/02/11 15:46:32 taca Exp $ -$bindir = RubyParams::BINDIR -$siterubydir = RubyParams::SITE_RB +$bindir = CONFIG["bindir"] -+$siterubydir = CONFIG["sitedir"] ++$siterubydir = CONFIG["sitelibdir"] $rddir = CONFIG["datadir"] + "/ruby/rd" $racc = "racc" -@@ -18,6 +17,8 @@ mfile.print <<"EOM" +@@ -18,6 +17,12 @@ mfile.print <<"EOM" # # RDtool makefile +prefix = #{CONFIG["prefix"]} +exec_prefix = #{CONFIG["exec_prefix"]} ++ruby_version = #{CONFIG["ruby_version"]} ++sitedir = #{CONFIG["sitedir"]} ++MAJOR = #{CONFIG["MAJOR"]} ++MINOR = #{CONFIG["MINOR"]} BIN_DIR = #{$bindir} SITE_RUBY = #{$siterubydir} RD_DIR = #{$rddir} |