# -*- 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$ PortSystem 1.0 PortGroup muniversal 1.0 name guile version 1.8.8 categories lang maintainers nomaintainer platforms darwin license LGPL-2.1+ description GNU's Ubiquitous Intelligent Language for Extension (guile) long_description \ Guile is an interpreter for the Scheme programming \ language, packaged for use in a wide variety of \ environments. Guile implements Scheme as described in \ the Revised^5 Report on the Algorithmic Language Scheme \ (usually known as R5RS), providing clean and general \ data and control structures. \ \ Guile goes beyond the rather austere language presented \ in R5RS, extending it with a module system, full access \ to POSIX system calls, networking support, multiple \ threads, dynamic linking, a foreign function call \ interface, powerful string processing, and many other \ features needed for programming in the real world. #user_notes You may need to set the environment variable \ # DYLD_LIBRARY_PATH to ${prefix}/lib (or wherever \ # the guile libraries have been installed) if you want \ # to load guile modules from an application linked with \ # libguile. This should only apply to developers using \ # guile as an extension language. distname guile-${version} homepage http://www.gnu.org/software/guile/guile.html master_sites gnu checksums md5 18661a8fdfef13e2fcb7651720aa53f3 \ sha1 548d6927aeda332b117f8fc5e4e82c39a05704f9 \ rmd160 8ac185a72ad8394b14d5377549e5bbf02889faaa patchfiles patch-srfi-60.c.diff \ patch-libguile-fports.c.diff \ patch-no-stack-checking.diff depends_lib port:readline \ port:gettext \ port:libiconv \ port:libtool \ port:gmp configure.args CPPFLAGS="-I${prefix}/include" \ LDFLAGS="-L${prefix}/lib" \ --infodir="${prefix}/share/info" \ --mandir="${prefix}/share/man" \ --enable-regex \ --disable-error-on-warning post-patch { # This changes configure to do what the author actually intended based on their comments reinplace "s|-Werror -Wmissing-braces|-Werror=missing-braces|" ${worksrcpath}/configure } # Unable to cross compile, so we need to be able to run the built code if {${os.arch} eq "i386" && ${os.major} >= 11} { supported_archs i386 x86_64 set universal_archs_supported {i386 x86_64} } elseif {${os.arch} eq "i386" && ${build_arch} eq "x86_64"} { supported_archs i386 x86_64 ppc set universal_archs_supported {i386 x86_64 ppc} } elseif {${os.arch} eq "i386"} { supported_archs i386 ppc set universal_archs_supported {i386 ppc} } elseif {${build_arch} eq "ppc64"} { supported_archs ppc ppc64 set universal_archs_supported {ppc ppc64} } else { supported_archs ${build_arch} set universal_archs_supported ${build_arch} } platform darwin { if {[variant_isset universal]} { set merger_host(x86_64) x86_64-apple-${os.platform}${os.major} set merger_host(i386) i686-apple-${os.platform}${os.major} set merger_host(ppc64) powerpc64-apple-${os.platform}${os.major} set merger_host(ppc) powerpc-apple-${os.platform}${os.major} set merger_configure_args(x86_64) "--build=x86_64-apple-${os.platform}${os.major}" set merger_configure_args(i386) "--build=i686-apple-${os.platform}${os.major}" set merger_configure_args(ppc) "--build=powerpc-apple-${os.platform}${os.major}" set merger_configure_args(ppc64) "--build=powerpc64-apple-${os.platform}${os.major}" } elseif {${build_arch} eq "i386"} { configure.args-append \ --host=i686-apple-${os.platform}${os.major} \ --build=i686-apple-${os.platform}${os.major} } elseif {${build_arch} eq "x86_64"} { configure.args-append \ --host=x86_64-apple-${os.platform}${os.major} \ --build=x86_64-apple-${os.platform}${os.major} } elseif {${build_arch} eq "ppc"} { configure.args-append \ --host=powerpc-apple-${os.platform}${os.major} \ --build=powerpc-apple-${os.platform}${os.major} } elseif {${build_arch} eq "ppc64"} { configure.args-append \ --host=powerpc64-apple-${os.platform}${os.major} \ --build=powerpc64-apple-${os.platform}${os.major} } } set merger_dont_diff "${prefix}/include/libguile/scmconfig.h" #post-destroot { # file delete ${destroot}${prefix}/share/${name}/1.6/ice-9/and-let\*.scm # } livecheck.type regex livecheck.url "http://ftp.gnu.org/pub/gnu/guile/?C=N;O=D" livecheck.regex "${name}-(\\d+(?:\\.\\d+)*)${extract.suffix}"