[89755] trunk/dports/_resources/port1.0/group/ruby-1.0.tcl

ryandesign at macports.org ryandesign at macports.org
Thu Feb 9 07:37:54 PST 2012


Revision: 89755
          http://trac.macports.org/changeset/89755
Author:   ryandesign at macports.org
Date:     2012-02-09 07:37:51 -0800 (Thu, 09 Feb 2012)
Log Message:
-----------
ruby-1.0.tcl: tabs to spaces and add standard modeline

Modified Paths:
--------------
    trunk/dports/_resources/port1.0/group/ruby-1.0.tcl

Modified: trunk/dports/_resources/port1.0/group/ruby-1.0.tcl
===================================================================
--- trunk/dports/_resources/port1.0/group/ruby-1.0.tcl	2012-02-09 15:36:57 UTC (rev 89754)
+++ trunk/dports/_resources/port1.0/group/ruby-1.0.tcl	2012-02-09 15:37:51 UTC (rev 89755)
@@ -1,3 +1,4 @@
+# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
 # $Id$
 # ruby-1.0.tcl
 # 
@@ -35,349 +36,349 @@
 # Define these variables assuming ruby1.8 to make them accessible in
 # the portfile after port group declaration. They can be modified by
 # ruby.setup, e.g. to use another ruby than 1.8.
-set ruby.bin	        ${prefix}/bin/ruby
-set ruby.rdoc	        ${prefix}/bin/rdoc
+set ruby.bin            ${prefix}/bin/ruby
+set ruby.rdoc           ${prefix}/bin/rdoc
 set ruby.gem            ${prefix}/bin/gem
 
 proc ruby.extract_config {var {default ""}} {
-	global ruby.bin
-	if {[catch {set val [exec ${ruby.bin} -e "require 'rbconfig';puts Config::CONFIG\[\"${var}\"\]"]}]} {
-		set val ${default}
-	}
-	return $val
+    global ruby.bin
+    if {[catch {set val [exec ${ruby.bin} -e "require 'rbconfig';puts Config::CONFIG\[\"${var}\"\]"]}]} {
+        set val ${default}
+    }
+    return $val
 }
 
 options ruby.version ruby.arch ruby.lib ruby.archlib
-default ruby.version	{[ruby.extract_config ruby_version]}
-default ruby.arch		{[ruby.extract_config arch "${os.arch}-${os.platform}${os.major}"]}
+default ruby.version    {[ruby.extract_config ruby_version]}
+default ruby.arch       {[ruby.extract_config arch "${os.arch}-${os.platform}${os.major}"]}
 # define installation libraries as vendor location
-default ruby.lib		{[ruby.extract_config vendorlibdir ${prefix}/lib/ruby/vendor_ruby/${ruby.version}]}
-default ruby.archlib	{[ruby.extract_config vendorarchdir ${ruby.lib}/${ruby.arch}]}
+default ruby.lib        {[ruby.extract_config vendorlibdir ${prefix}/lib/ruby/vendor_ruby/${ruby.version}]}
+default ruby.archlib    {[ruby.extract_config vendorarchdir ${ruby.lib}/${ruby.arch}]}
 
-set ruby.module		""
-set ruby.filename	""
-set ruby.project	""
-set ruby.docs		{}
-set ruby.srcdir		""
+set ruby.module     ""
+set ruby.filename   ""
+set ruby.project    ""
+set ruby.docs       {}
+set ruby.srcdir     ""
 
 # ruby group setup procedure; optional for ruby 1.8 if you want only
 # basic variables, like ruby.lib and ruby.archlib.
 proc ruby.setup {module vers {type "install.rb"} {docs {}} {source "custom"} {implementation "ruby"}} {
-	global destroot prefix worksrcpath os.platform
-	global ruby.bin ruby.rdoc ruby.gem
-	global ruby.version ruby.lib
-	global ruby.module ruby.filename ruby.project ruby.docs ruby.srcdir
-	global ruby.prog_suffix
-
-	if {${implementation} eq "ruby19"} {
-	    set ruby.port_prefix rb19
-	    set ruby.prog_suffix "1.9"
-	} elseif {${implementation} eq "ruby"} {
-		# ruby.bin, ruby.rdoc, and ruby.gem set to 1.8 by default
-		set ruby.port_prefix rb
-		# no program suffix by default, so leave as blank
-		set ruby.prog_suffix ""
-	} else {
-		ui_error "ruby.setup: unknown implementation '${implementation}' specified (ruby, ruby19 possible)"
-		return -code error "ruby.setup failed"
-	}
-	set ruby.bin	${prefix}/bin/ruby${ruby.prog_suffix}
-	set ruby.rdoc	${prefix}/bin/rdoc${ruby.prog_suffix}
-	set ruby.gem    ${prefix}/bin/gem${ruby.prog_suffix}
-
-	# define ruby global names and lists
-	# check if module is a list or string
-	if {[llength ${module}] > 1} {
-		# if a list, first item is the module name
-		set ruby.module		[lindex ${module} 0]
-		# second argument is the project & file name
-		set ruby.project	[lindex ${module} 1]
-		set ruby.filename	[lindex ${module} 1]
-	} else {
-		# else, module, project, and file name are the same
-		set ruby.module		${module}
-		set ruby.project	${module}
-		set ruby.filename	${module}
-	}
-	set ruby.docs	${docs}
-
-	name			${ruby.port_prefix}-[string tolower ${ruby.module}]
-	version			${vers}
-	categories		ruby
-
-	switch -glob ${source} {
-		rubyforge:*:* {
-			set num [lindex [split ${source} {:}] 1]
-			set ruby.project [string tolower [lindex [split ${source} {:}] 2]]
-			homepage		http://rubyforge.org/projects/${ruby.project}
-			master_sites	http://rubyforge.org/frs/download.php/${num}/
-			livecheck.type	regex
-			livecheck.url	http://rubyforge.org/projects/${ruby.project}
-			livecheck.regex	"<strong>${ruby.project}</strong></td><td>(?:REL )?(.*)$"
-		}
-		rubyforge:* {
-			set num [lindex [split ${source} {:}] 1]
-			homepage		http://rubyforge.org/projects/${ruby.project}
-			master_sites	http://rubyforge.org/frs/download.php/${num}/
-			livecheck.type	regex
-			livecheck.url	http://rubyforge.org/projects/${ruby.project}
-			livecheck.regex	"<strong>${ruby.project}</strong></td><td>(?:REL )?(.*)$"
-		}
-		rubyforge_gem:* {
-			set ruby.project [lindex [split ${source} {:}] 1]
-			homepage		http://rubyforge.org/projects/${ruby.project}
-			master_sites	http://gems.rubyforge.vm.bytemark.co.uk/gems/ \
-			                http://rubyforge.iasi.roedu.net/gems/
-			livecheck.type	regex
-			livecheck.url	http://rubyforge.org/projects/${ruby.project}
-			livecheck.regex	"<strong>${ruby.module}</strong></td><td>(?:REL )?(.*)$"
-		}
-		rubyforge_gem {
-			homepage		http://rubyforge.org/projects/${ruby.project}
-			master_sites	http://gems.rubyforge.vm.bytemark.co.uk/gems/ \
-			                http://rubyforge.iasi.roedu.net/gems/
-			livecheck.type	regex
-			livecheck.url	http://rubyforge.org/projects/${ruby.project}
-			livecheck.regex	"<strong>${ruby.module}</strong></td><td>(?:REL )?(.*)$"
-		}
-		rubygems {
-		    homepage        http://www.rubygems.org/gems/${ruby.project}
-		    master_sites    http://www.rubygems.org/downloads/
-		    livecheck.type  regex
-		    livecheck.url   http://www.rubygems.org/gems/${ruby.project}
-		    livecheck.regex {<h3>(\d|\d[0-9.]*\d)</h3>}
-		}
-		sourceforge:* {
-			set ruby.project [lindex [split ${source} {:}] 1]
-			homepage		http://sourceforge.net/projects/${ruby.project}
-			master_sites	sourceforge:${ruby.project}
-		}
-		sourceforge {
-			homepage		http://sourceforge.net/projects/${ruby.project}
-			master_sites	sourceforge:${ruby.project}
-		}
-	}
-
-	distname		${ruby.filename}-${vers}
-	dist_subdir		ruby
-
-	depends_lib		port:${implementation}
-
-	post-extract {
-		# Create the work directory for gem-based ruby ports.
-		system "mkdir -p ${worksrcpath}"
-		system "find ${worksrcpath} -type d -name CVS | xargs rm -rf"
-	}
-
-	switch -glob ${type} {
-		basic_install.rb {
-			post-patch {
-				# create destroot setup file
-				set fp [open ${worksrcpath}/destroot.rb w]
-				puts $fp "
-					require 'rbconfig'
-					include Config
-					DESTROOT=ENV\['DESTROOT'\] || ''
-					CONFIG.keys.find_all { |d|
-						d.match(/dir\$/) and !d.match(/(src|build|compile)/)
-					}.each {|confdir|
-						CONFIG\[confdir\]=DESTROOT+CONFIG\[confdir\]
-					}
-					\$:.reverse.each { |d| \$:.unshift(DESTROOT+d) }
-				"
-				close $fp
-				# adjust basic install.rb script
-				reinplace "s|site_ruby|vendor_ruby|" ${worksrcpath}/install.rb
-			}
-
-			use_configure	no
-
-			build			{}
-
-			pre-destroot {
-				xinstall -d -m 0755 ${destroot}${ruby.lib}
-			}
-			destroot.env	DESTROOT=${destroot}
-			destroot.cmd	${ruby.bin} -rvendor-specific -rdestroot install.rb
-			destroot.target
-			destroot.destdir
-		}
-		copy_install:* {
-			set ruby.srcdir	[lindex [split ${type} {:}] 1]
-
-			use_configure	no
-
-			build			{}
-
-			destroot {
-				set root ${worksrcpath}/${ruby.srcdir}
-				xinstall -d -m 0755 ${destroot}${ruby.lib}
-				fs-traverse file $root {
-					set file [trimroot $root $file]
-					if {$file ne ""} {
-						set filepath [file join $root $file]
-						if {[file isdirectory $filepath]} {
-							xinstall -d -m 0755 ${destroot}${ruby.lib}/${file}
-						} else {
-							xinstall -m 0644 $filepath ${destroot}${ruby.lib}/${file}
-						}
-					}
-				}
-			}
-		}
-		install.rb {
-			configure.cmd		${ruby.bin} -rvendor-specific install.rb
-			configure.pre_args	config
-
-			build.cmd			${ruby.bin} -rvendor-specific install.rb
-			build.target		setup
-
-			pre-destroot {
-				if {[file isfile ${worksrcpath}/config.save]} {
-					reinplace "s|^prefix=${prefix}|prefix=${destroot}${prefix}|g" \
-						${worksrcpath}/config.save
-				}
-				if {[file isfile ${worksrcpath}/.config]} {
-					reinplace "s|^prefix=${prefix}|prefix=${destroot}${prefix}|g" \
-						${worksrcpath}/.config
-				}
-			}
-			destroot.cmd		${ruby.bin} -rvendor-specific install.rb
-			destroot.target		install
-			destroot.destdir
-		}
-		setup.rb {
-			configure.cmd		${ruby.bin} -rvendor-specific setup.rb
-			configure.pre_args	config
-
-			build.cmd			${ruby.bin} -rvendor-specific setup.rb
-			build.target		setup
-
-			pre-destroot {
-				if {[file isfile ${worksrcpath}/config.save]} {
-					reinplace "s|${prefix}|${destroot}${prefix}|g" \
-						${worksrcpath}/config.save
-				}
-				if {[file isfile ${worksrcpath}/.config]} {
-					reinplace "s|${prefix}|${destroot}${prefix}|g" \
-						${worksrcpath}/.config
-				}
-			}
-			destroot.cmd		${ruby.bin} -rvendor-specific setup.rb
-			destroot.target		install
-			destroot.destdir
-		}
-		extconf.rb {
-			configure.cmd		${ruby.bin} -rvendor-specific extconf.rb
-			configure.pre_args
-			configure.args		--prefix=${prefix}
-
-			build.args			RUBY="${ruby.bin} -rvendor-specific"
-
-			destroot.args		RUBY="${ruby.bin} -rvendor-specific"
-		}
-		gnu {
-			build.args			RUBY="${ruby.bin} -rvendor-specific"
-
-			pre-destroot {
-				if {[file isfile ${worksrcpath}/config.save]} {
-					reinplace "s|${prefix}|${destroot}${prefix}|g" \
-						${worksrcpath}/config.save
-				}
-				if {[file isfile ${worksrcpath}/.config]} {
-					reinplace "s|${prefix}|${destroot}${prefix}|g" \
-						${worksrcpath}/.config
-				}
-			}
-			destroot.args		RUBY="${ruby.bin} -rvendor-specific"
-		}
-		gem {
-			use_configure no
-			extract.suffix .gem
-			
-			if {${implementation} eq "ruby"} {
-			    depends_lib-append	port:rb-rubygems
-			}
-			
-			extract {}
-			build {}
-			
-			pre-destroot {
-				xinstall -d -m 0755 ${destroot}${prefix}/lib/ruby${ruby.prog_suffix}/gems/${ruby.version}
-			}
-			
-			destroot {
-			  system "cd ${worksrcpath} && ${ruby.gem} install --local --force --install-dir ${destroot}${prefix}/lib/ruby${ruby.prog_suffix}/gems/${ruby.version} ${distpath}/${distname}"
-			
-				set binDir ${destroot}${prefix}/lib/ruby${ruby.prog_suffix}/gems/${ruby.version}/bin
-				if {[file isdirectory $binDir]} {
-					foreach file [readdir $binDir] {
-						file copy [file join $binDir $file] ${destroot}${prefix}/bin
-					}
-				}
-			}
-		}
-		fetch {
-			# do nothing but fetch and extract - for strange installers
-			build {}
-		}
-		default {
-			ui_error "ruby.setup: unknown setup type '${type}' specified!"
-			return -code error "ruby.setup failed"
-		}
-	}
-
+    global destroot prefix worksrcpath os.platform
+    global ruby.bin ruby.rdoc ruby.gem
+    global ruby.version ruby.lib
+    global ruby.module ruby.filename ruby.project ruby.docs ruby.srcdir
+    global ruby.prog_suffix
+    
+    if {${implementation} eq "ruby19"} {
+        set ruby.port_prefix rb19
+        set ruby.prog_suffix "1.9"
+    } elseif {${implementation} eq "ruby"} {
+        # ruby.bin, ruby.rdoc, and ruby.gem set to 1.8 by default
+        set ruby.port_prefix rb
+        # no program suffix by default, so leave as blank
+        set ruby.prog_suffix ""
+    } else {
+        ui_error "ruby.setup: unknown implementation '${implementation}' specified (ruby, ruby19 possible)"
+        return -code error "ruby.setup failed"
+    }
+    set ruby.bin    ${prefix}/bin/ruby${ruby.prog_suffix}
+    set ruby.rdoc   ${prefix}/bin/rdoc${ruby.prog_suffix}
+    set ruby.gem    ${prefix}/bin/gem${ruby.prog_suffix}
+    
+    # define ruby global names and lists
+    # check if module is a list or string
+    if {[llength ${module}] > 1} {
+        # if a list, first item is the module name
+        set ruby.module     [lindex ${module} 0]
+        # second argument is the project & file name
+        set ruby.project    [lindex ${module} 1]
+        set ruby.filename   [lindex ${module} 1]
+    } else {
+        # else, module, project, and file name are the same
+        set ruby.module     ${module}
+        set ruby.project    ${module}
+        set ruby.filename   ${module}
+    }
+    set ruby.docs   ${docs}
+    
+    name            ${ruby.port_prefix}-[string tolower ${ruby.module}]
+    version         ${vers}
+    categories      ruby
+    
+    switch -glob ${source} {
+        rubyforge:*:* {
+            set num [lindex [split ${source} {:}] 1]
+            set ruby.project [string tolower [lindex [split ${source} {:}] 2]]
+            homepage        http://rubyforge.org/projects/${ruby.project}
+            master_sites    http://rubyforge.org/frs/download.php/${num}/
+            livecheck.type  regex
+            livecheck.url   http://rubyforge.org/projects/${ruby.project}
+            livecheck.regex "<strong>${ruby.project}</strong></td><td>(?:REL )?(.*)$"
+        }
+        rubyforge:* {
+            set num [lindex [split ${source} {:}] 1]
+            homepage        http://rubyforge.org/projects/${ruby.project}
+            master_sites    http://rubyforge.org/frs/download.php/${num}/
+            livecheck.type  regex
+            livecheck.url   http://rubyforge.org/projects/${ruby.project}
+            livecheck.regex "<strong>${ruby.project}</strong></td><td>(?:REL )?(.*)$"
+        }
+        rubyforge_gem:* {
+            set ruby.project [lindex [split ${source} {:}] 1]
+            homepage        http://rubyforge.org/projects/${ruby.project}
+            master_sites    http://gems.rubyforge.vm.bytemark.co.uk/gems/ \
+                            http://rubyforge.iasi.roedu.net/gems/
+            livecheck.type  regex
+            livecheck.url   http://rubyforge.org/projects/${ruby.project}
+            livecheck.regex "<strong>${ruby.module}</strong></td><td>(?:REL )?(.*)$"
+        }
+        rubyforge_gem {
+            homepage        http://rubyforge.org/projects/${ruby.project}
+            master_sites    http://gems.rubyforge.vm.bytemark.co.uk/gems/ \
+                            http://rubyforge.iasi.roedu.net/gems/
+            livecheck.type  regex
+            livecheck.url   http://rubyforge.org/projects/${ruby.project}
+            livecheck.regex "<strong>${ruby.module}</strong></td><td>(?:REL )?(.*)$"
+        }
+        rubygems {
+            homepage        http://www.rubygems.org/gems/${ruby.project}
+            master_sites    http://www.rubygems.org/downloads/
+            livecheck.type  regex
+            livecheck.url   http://www.rubygems.org/gems/${ruby.project}
+            livecheck.regex {<h3>(\d|\d[0-9.]*\d)</h3>}
+        }
+        sourceforge:* {
+            set ruby.project [lindex [split ${source} {:}] 1]
+            homepage        http://sourceforge.net/projects/${ruby.project}
+            master_sites    sourceforge:${ruby.project}
+        }
+        sourceforge {
+            homepage        http://sourceforge.net/projects/${ruby.project}
+            master_sites    sourceforge:${ruby.project}
+        }
+    }
+    
+    distname        ${ruby.filename}-${vers}
+    dist_subdir     ruby
+    
+    depends_lib     port:${implementation}
+    
+    post-extract {
+        # Create the work directory for gem-based ruby ports.
+        system "mkdir -p ${worksrcpath}"
+        system "find ${worksrcpath} -type d -name CVS | xargs rm -rf"
+    }
+    
+    switch -glob ${type} {
+        basic_install.rb {
+            post-patch {
+                # create destroot setup file
+                set fp [open ${worksrcpath}/destroot.rb w]
+                puts $fp "
+                    require 'rbconfig'
+                    include Config
+                    DESTROOT=ENV\['DESTROOT'\] || ''
+                    CONFIG.keys.find_all { |d|
+                        d.match(/dir\$/) and !d.match(/(src|build|compile)/)
+                    }.each {|confdir|
+                        CONFIG\[confdir\]=DESTROOT+CONFIG\[confdir\]
+                    }
+                    \$:.reverse.each { |d| \$:.unshift(DESTROOT+d) }
+                "
+                close $fp
+                # adjust basic install.rb script
+                reinplace "s|site_ruby|vendor_ruby|" ${worksrcpath}/install.rb
+            }
+            
+            use_configure   no
+            
+            build           {}
+            
+            pre-destroot {
+                xinstall -d -m 0755 ${destroot}${ruby.lib}
+            }
+            destroot.env    DESTROOT=${destroot}
+            destroot.cmd    ${ruby.bin} -rvendor-specific -rdestroot install.rb
+            destroot.target
+            destroot.destdir
+        }
+        copy_install:* {
+            set ruby.srcdir [lindex [split ${type} {:}] 1]
+            
+            use_configure   no
+            
+            build           {}
+            
+            destroot {
+                set root ${worksrcpath}/${ruby.srcdir}
+                xinstall -d -m 0755 ${destroot}${ruby.lib}
+                fs-traverse file $root {
+                    set file [trimroot $root $file]
+                    if {$file ne ""} {
+                        set filepath [file join $root $file]
+                        if {[file isdirectory $filepath]} {
+                            xinstall -d -m 0755 ${destroot}${ruby.lib}/${file}
+                        } else {
+                            xinstall -m 0644 $filepath ${destroot}${ruby.lib}/${file}
+                        }
+                    }
+                }
+            }
+        }
+        install.rb {
+            configure.cmd       ${ruby.bin} -rvendor-specific install.rb
+            configure.pre_args  config
+            
+            build.cmd           ${ruby.bin} -rvendor-specific install.rb
+            build.target        setup
+            
+            pre-destroot {
+                if {[file isfile ${worksrcpath}/config.save]} {
+                    reinplace "s|^prefix=${prefix}|prefix=${destroot}${prefix}|g" \
+                        ${worksrcpath}/config.save
+                }
+                if {[file isfile ${worksrcpath}/.config]} {
+                    reinplace "s|^prefix=${prefix}|prefix=${destroot}${prefix}|g" \
+                        ${worksrcpath}/.config
+                }
+            }
+            destroot.cmd        ${ruby.bin} -rvendor-specific install.rb
+            destroot.target     install
+            destroot.destdir
+        }
+        setup.rb {
+            configure.cmd       ${ruby.bin} -rvendor-specific setup.rb
+            configure.pre_args  config
+            
+            build.cmd           ${ruby.bin} -rvendor-specific setup.rb
+            build.target        setup
+            
+            pre-destroot {
+                if {[file isfile ${worksrcpath}/config.save]} {
+                    reinplace "s|${prefix}|${destroot}${prefix}|g" \
+                        ${worksrcpath}/config.save
+                }
+                if {[file isfile ${worksrcpath}/.config]} {
+                    reinplace "s|${prefix}|${destroot}${prefix}|g" \
+                        ${worksrcpath}/.config
+                }
+            }
+            destroot.cmd        ${ruby.bin} -rvendor-specific setup.rb
+            destroot.target     install
+            destroot.destdir
+        }
+        extconf.rb {
+            configure.cmd       ${ruby.bin} -rvendor-specific extconf.rb
+            configure.pre_args
+            configure.args      --prefix=${prefix}
+            
+            build.args          RUBY="${ruby.bin} -rvendor-specific"
+            
+            destroot.args       RUBY="${ruby.bin} -rvendor-specific"
+        }
+        gnu {
+            build.args          RUBY="${ruby.bin} -rvendor-specific"
+            
+            pre-destroot {
+                if {[file isfile ${worksrcpath}/config.save]} {
+                    reinplace "s|${prefix}|${destroot}${prefix}|g" \
+                        ${worksrcpath}/config.save
+                }
+                if {[file isfile ${worksrcpath}/.config]} {
+                    reinplace "s|${prefix}|${destroot}${prefix}|g" \
+                        ${worksrcpath}/.config
+                }
+            }
+            destroot.args       RUBY="${ruby.bin} -rvendor-specific"
+        }
+        gem {
+            use_configure no
+            extract.suffix .gem
+            
+            if {${implementation} eq "ruby"} {
+                depends_lib-append  port:rb-rubygems
+            }
+            
+            extract {}
+            build {}
+            
+            pre-destroot {
+                xinstall -d -m 0755 ${destroot}${prefix}/lib/ruby${ruby.prog_suffix}/gems/${ruby.version}
+            }
+            
+            destroot {
+                system "cd ${worksrcpath} && ${ruby.gem} install --local --force --install-dir ${destroot}${prefix}/lib/ruby${ruby.prog_suffix}/gems/${ruby.version} ${distpath}/${distname}"
+                
+                set binDir ${destroot}${prefix}/lib/ruby${ruby.prog_suffix}/gems/${ruby.version}/bin
+                if {[file isdirectory $binDir]} {
+                    foreach file [readdir $binDir] {
+                        file copy [file join $binDir $file] ${destroot}${prefix}/bin
+                    }
+                }
+            }
+        }
+        fetch {
+            # do nothing but fetch and extract - for strange installers
+            build {}
+        }
+        default {
+            ui_error "ruby.setup: unknown setup type '${type}' specified!"
+            return -code error "ruby.setup failed"
+        }
+    }
+    
     if {$type != "gnu"} {
         configure.universal_args-delete  --disable-dependency-tracking
-	}
-
-	post-destroot {
-		# Install documentation files (if specified)
-		if {[llength ${ruby.docs}] > 0} {
-			set docPath ${prefix}/share/doc/${name}
-			xinstall -d -m 0755 ${destroot}${docPath}
-			foreach docitem ${ruby.docs} {
-				set docitem [file join ${worksrcpath} ${docitem}]
-				if {[file isdirectory ${docitem}]} {
-				    set subdir [file tail $docitem]
-				    xinstall -d -m 0755 ${destroot}${docPath}/${subdir}
-					fs-traverse file $docitem {
-						set file [trimroot $docitem $file]
-						if {$file ne ""} {
-							set filepath [file join $docitem $file]
-							if {[file isdirectory $filepath]} {
-								xinstall -d -m 0755 ${destroot}${docPath}/${subdir}/${file}
-							} else {
-								xinstall -m 0644 $filepath ${destroot}${docPath}/${subdir}/${file}
-							}
-						}
-					}
-				} else {
-					xinstall -m 0644 ${docitem} ${destroot}${docPath}
-				}
-			}
-		}
-	}
+    }
+    
+    post-destroot {
+        # Install documentation files (if specified)
+        if {[llength ${ruby.docs}] > 0} {
+            set docPath ${prefix}/share/doc/${name}
+            xinstall -d -m 0755 ${destroot}${docPath}
+            foreach docitem ${ruby.docs} {
+                set docitem [file join ${worksrcpath} ${docitem}]
+                if {[file isdirectory ${docitem}]} {
+                    set subdir [file tail $docitem]
+                    xinstall -d -m 0755 ${destroot}${docPath}/${subdir}
+                    fs-traverse file $docitem {
+                        set file [trimroot $docitem $file]
+                        if {$file ne ""} {
+                            set filepath [file join $docitem $file]
+                            if {[file isdirectory $filepath]} {
+                                xinstall -d -m 0755 ${destroot}${docPath}/${subdir}/${file}
+                            } else {
+                                xinstall -m 0644 $filepath ${destroot}${docPath}/${subdir}/${file}
+                            }
+                        }
+                    }
+                } else {
+                    xinstall -m 0644 ${docitem} ${destroot}${docPath}
+                }
+            }
+        }
+    }
 }
 
 proc trimroot {root path} {
-	set acc {}
-	set skiproot no
-	foreach rootf [file split $root] pathf [file split $path] {
-		if {$pathf eq ""} {
-			# we've hit the end of the path
-			break
-		} elseif {$skiproot eq "yes" || $rootf eq ""} {
-			lappend acc $pathf
-		} elseif {$rootf ne $pathf} {
-			# diverged from the root
-			lappend acc $pathf
-			set skiproot yes
-		}
-	}
-	if {[llength $acc] == 0} {
-		return ""
-	} else {
-		return [eval [subst -nobackslashes -nocommands {file join $acc}]]
-	}
+    set acc {}
+    set skiproot no
+    foreach rootf [file split $root] pathf [file split $path] {
+        if {$pathf eq ""} {
+            # we've hit the end of the path
+            break
+        } elseif {$skiproot eq "yes" || $rootf eq ""} {
+            lappend acc $pathf
+        } elseif {$rootf ne $pathf} {
+            # diverged from the root
+            lappend acc $pathf
+            set skiproot yes
+        }
+    }
+    if {[llength $acc] == 0} {
+        return ""
+    } else {
+        return [eval [subst -nobackslashes -nocommands {file join $acc}]]
+    }
 }
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20120209/1f7e1811/attachment-0001.html>


More information about the macports-changes mailing list