Ports/gawk: Update gawk to version 5.2.2

This also adds gmp and mpfr as optional dependencies, and sets the
sysroot to to allow gawk to find libgmp when building with Clang, and
to make the results predictable regardless of the order the ports are
installed in.
This commit is contained in:
EWouters 2023-09-01 19:24:52 +02:00 committed by Jelle Raaijmakers
parent c0eeea0a72
commit d86a6d2e8c
Notes: sideshowbarker 2024-07-17 11:30:54 +09:00
2 changed files with 10 additions and 3 deletions

View File

@ -88,7 +88,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n
| [`freedink`](freedink/) | FreeDink | 109.6 | https://www.gnu.org/software/freedink/ |
| [`freetype`](freetype/) | FreeType | 2.13.2 | https://www.freetype.org/ |
| [`frotz`](frotz/) | Frotz | 2.54 | https://gitlab.com/DavidGriffith/frotz |
| [`gawk`](gawk/) | GNU awk | 5.2.1 | https://www.gnu.org/software/gawk/ |
| [`gawk`](gawk/) | GNU awk | 5.2.2 | https://www.gnu.org/software/gawk/ |
| [`gcc`](gcc/) | GNU Compiler Collection | 13.2.0 | https://gcc.gnu.org/ |
| [`gdb`](gdb/) | GNU Project Debugger | 11.2 | https://sourceware.org/gdb |
| [`gemrb`](gemrb/) | GemRB | 0.9.1 | https://gemrb.org/ |

View File

@ -1,7 +1,14 @@
#!/usr/bin/env -S bash ../.port_include.sh
port='gawk'
version='5.2.1'
version='5.2.2'
useconfigure='true'
files=(
"https://ftpmirror.gnu.org/gnu/gawk/gawk-${version}.tar.gz#529e7c8c6acf21ff3a6183f4d763c632810908989c24675c77995d51ac37b79c"
"https://ftpmirror.gnu.org/gnu/gawk/gawk-${version}.tar.gz#945aef7ccff101f20b22a10802bc005e994ab2b8ea3e724cc1a197c62f41f650"
)
depends=(
'gmp'
'mpfr'
)
configopts=(
"--with-sysroot=${SERENITY_INSTALL_ROOT}"
)