diff options
author | Gunnar Beutner <gunnar@beutner.name> | 2021-04-14 04:33:01 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-14 13:13:06 +0200 |
commit | ba5710871bb112e2a08c9827f74eda7a69bfd2ea (patch) | |
tree | 1c25672b9f0b08357a6ba0ebbc6e2bf4c6c7c273 | |
parent | 3cfc05fb8a369bdd28728ca3f66c993f342c5124 (diff) | |
download | serenity-ba5710871bb112e2a08c9827f74eda7a69bfd2ea.zip |
Ports: Add libgcrypt port
-rw-r--r-- | Ports/AvailablePorts.md | 1 | ||||
-rwxr-xr-x | Ports/libgcrypt/package.sh | 15 | ||||
-rw-r--r-- | Ports/libgcrypt/patches/configure.patch | 12 |
3 files changed, 28 insertions, 0 deletions
diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index 832f4fd46b..c5adf2dcb1 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -45,6 +45,7 @@ Please make sure to keep this list up to date when adding and updating ports. :^ | [`libassuan`](libassuan/) | libassuan | 2.5.5 | https://gnupg.org/software/libassuan/index.html | | [`libexpat`](libexpat/) | Expat | 2.2.9 | https://libexpat.github.io/ | | [`libffi`](libffi/) | libffi | 3.3 | https://www.sourceware.org/libffi/ | +| [`libgcrypt`](libgcrypt/) | libgcrypt | 1.9.2 | https://gnupg.org/software/libgcrypt/index.html | | [`libgpg-error`](libgpg-error/)| libgpg-error | 1.42 | https://gnupg.org/software/libgpg-error/index.html | | [`libiconv`](libiconv/) | GNU libiconv | 1.16 | https://www.gnu.org/software/libiconv/ | | [`libksba`](libksba/) | libksba | 1.5.1 | https://gnupg.org/software/libksba/index.html | diff --git a/Ports/libgcrypt/package.sh b/Ports/libgcrypt/package.sh new file mode 100755 index 0000000000..33bb1c6b02 --- /dev/null +++ b/Ports/libgcrypt/package.sh @@ -0,0 +1,15 @@ +#!/usr/bin/env -S bash ../.port_include.sh +port=libgcrypt +version=1.9.2 +useconfigure=true +configopts="--with-libgpg-error-prefix=${SERENITY_BUILD_DIR}/Root/usr/local" +files="https://gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-${version}.tar.bz2 libgcrypt-${version}.tar.bz2" + +pre_configure() { + export gcry_cv_gcc_has_f_visibility=no + export ac_cv_lib_pthread_pthread_create=no +} + +configure() { + run ./configure --host="${SERENITY_ARCH}-pc-serenity" --build="$($workdir/build-aux/config.guess)" $configopts +} diff --git a/Ports/libgcrypt/patches/configure.patch b/Ports/libgcrypt/patches/configure.patch new file mode 100644 index 0000000000..645cb687d2 --- /dev/null +++ b/Ports/libgcrypt/patches/configure.patch @@ -0,0 +1,12 @@ +diff -Naur libgcrypt-1.9.2/build-aux/config.sub libgcrypt-1.9.2.serenity/build-aux/config.sub +--- libgcrypt-1.9.2/build-aux/config.sub 2019-06-23 17:35:08.000000000 +0200 ++++ libgcrypt-1.9.2.serenity/build-aux/config.sub 2021-04-14 01:14:04.895316310 +0200 +@@ -1381,7 +1381,7 @@ + # The portable systems comes first. + # Each alternative MUST END IN A *, to match a version number. + # -sysv* is not here because it comes later, after sysvr4. +- -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ ++ -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* | -serenity* \ + | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ + | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ + | -sym* | -kopensolaris* | -plan9* \ |