# -*- 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 PortSystem 1.0 PortGroup gnu_info 1.0 PortGroup legacysupport 1.1 name gawk version 5.3.0 revision 0 categories lang license GPL-3+ installs_libs no maintainers {mps @Schamschula} openmaintainer master_sites gnu homepage https://www.gnu.org/software/gawk/ description The GNU awk utility. use_xz yes long_description \ The awk utility interprets a special-purpose programming language \ that makes it possible to handle simple data-reformatting jobs with \ just a few lines of code. It is a free, extended version of awk. checksums rmd160 560b6634ff95735873186ef30c58a628c0261150 \ sha256 ca9c16d3d11d0ff8c69d79dc0b47267e1329a69b39b799895604ed447d3ca90b \ size 3436180 depends_build port:gettext depends_lib port:gettext-runtime configure.args --with-libiconv-prefix=${prefix} \ --without-mpfr \ --without-readline \ ac_cv_libsigsegv=no \ ac_cv_prog_AWK=awk # https://trac.macports.org/ticket/65944 platform darwin { if {${os.major} < 10} { post-patch { reinplace "s:-Xlinker -no_pie::" ${worksrcpath}/configure } } } # fix build on Tiger see https://trac.macports.org/ticket/55145 platform darwin 8 { configure.cppflags-append -D__DARWIN_UNIX03 } configure.checks.implicit_function_declaration.whitelist-append strchr test.run yes test.target check post-destroot { delete ${destroot}${prefix}/bin/awk xinstall -m 755 -d ${destroot}${prefix}/libexec/gnubin foreach binary [glob -tails -directory ${destroot}${prefix}/bin g*] { ln -s ${prefix}/bin/${binary} ${destroot}${prefix}/libexec/gnubin/[string range $binary 1 end] } xinstall -m 755 -d ${destroot}${prefix}/libexec/gnubin/man/man1 foreach manpage [glob -tails -directory ${destroot}${prefix}/share/man/man1 g*] { ln -s ${prefix}/share/man/man1/${manpage}.gz ${destroot}${prefix}/libexec/gnubin/man/man1/[string range $manpage 1 end].gz } } variant mpfr description {Add mpfr support} { depends_lib-append port:gmp \ port:mpfr configure.args-delete --without-mpfr } notes " readline support has been removed from gawk. If you need to run gawk interactively,\ install rlwrap: sudo port install rlwrap and run gawk using rlwrap: rlwrap gawk ... "