# $Id$ PortSystem 1.0 name ruby version 1.8.7-p72 revision 2 categories lang ruby maintainers kimuraw description Powerful and clean object-oriented scripting language long_description Ruby is the interpreted scripting language for quick \ and easy object-oriented programming. It has many \ features to process text files and to do system \ management tasks (as in Perl). It is simple, \ straight-forward, extensible, and portable. homepage http://www.ruby-lang.org/ master_sites ruby:1.8 dist_subdir ruby checksums md5 0b215c46b89b28d7ab8d56d96e72d5b9 \ rmd160 07bf0d6987ba111aed988093c569fb66ba54891b \ sha1 462e990a724580e4dfeeac5a271b93f6cfcbf5c7 use_bzip2 yes platforms darwin depends_build port:autoconf depends_lib port:libiconv \ port:readline \ port:openssl \ port:zlib \ port:ncurses patchfiles patch-Makefile.in \ patch-configure.in \ patch-mkmf.rb \ patch-mkconfig.rb \ patch-socket.c \ patch-test_socket.rb # http://trac.macports.org/ticket/16853 # abandon wrapping if the line contains no space. # (REXML::Formatters::Pretty#wrap) # http://redmine.ruby-lang.org/issues/show/516 patchfiles-append patch-lib-rexml-formatters-pretty.rb.diff # ignore getcontext() and setcontext() # on 10.5, these functions have some problems (SEGV on ppc, slower than 1.8.6) # http://chopine.be/lrz/ruby-osx-patches/ignore-gsetcontext.diff patchfiles-append patch-node.h.diff use_autoconf yes autoconf.cmd autoreconf autoconf.args -fvi use_parallel_build yes configure.args --enable-shared \ --mandir="${prefix}/share/man" \ --enable-pthread \ --with-vendordir=${prefix}/lib/ruby/vendor_ruby # ignore minor version for archdir, like i686-darwin9 configure.env UNAME_RELEASE=${os.major} destroot.target install install-doc post-destroot { foreach type {site vendor} { set libdir ${destroot}${prefix}/lib/ruby/${type}_ruby xinstall -m 0755 -d ${libdir} # special file for installation control of modules xinstall -m 0644 ${filespath}/${type}-specific.rb ${libdir} # prevent empty site/vendor directories from being pruned foreach subdir [exec find ${libdir} -type d -empty] { destroot.keepdirs-append ${subdir} } } } variant universal { configure.args-delete --disable-dependency-tracking build.target-append EXTLDFLAGS="${configure.universal_ldflags}" CFLAGS="${configure.universal_cflags}" } platform darwin { # for proper rdoc/ri creation, make sure to link to destroot libruby.dylib destroot.env DYLD_LIBRARY_PATH=${destroot}${prefix}/lib } platform darwin 7 { # pthreads is being called with an unavailable function call configure.args-delete --enable-pthread } variant thread_hooks description "apply Apple's thread_hooks patch" { patchfiles-append patch-thread-hooks } variant no_doc description "do not install rdoc documents" { destroot.target-delete install-doc } default_variants +thread_hooks livecheck.check regex livecheck.url http://www.ruby-lang.org/en/downloads/ livecheck.regex {>Ruby (.*?) \(md5:} test.run yes