Ticket #43404: Portfile-gawk.diff
File Portfile-gawk.diff, 1.2 KB (added by Schamschula (Marius Schamschula), 11 years ago) |
---|
-
Portfile
old new 6 6 7 7 name gawk 8 8 version 4.1.1 9 revision 19 revision 2 10 10 categories lang 11 11 license GPL-3+ 12 12 installs_libs no … … 26 26 rmd160 a5a6ab9491bf702310cef7c035531cc7fad0a62d 27 27 28 28 depends_lib port:gettext \ 29 port:gmp \30 port:mpfr \31 29 port:readline 32 30 33 31 conflicts_build nawk … … 35 33 patchfiles patch-extensions-Makefile.in.diff 36 34 37 35 configure.args --with-libiconv-prefix=${prefix} \ 36 --without-mpfr \ 38 37 ac_cv_libsigsegv=no 39 38 40 39 test.run yes … … 52 51 ln -s ${prefix}/share/man/man1/${manpage}.gz ${destroot}${prefix}/libexec/gnubin/man/man1/[string range $manpage 1 end].gz 53 52 } 54 53 } 54 55 variant mpfr { 56 depends_lib-append port:gmp \ 57 port:mpfr 58 59 configure.args-delete --without-mpfr 60 }