diff options
author | Yusuf Yaman <nxjoseph@protonmail.com> | 2025-02-06 16:40:12 +0000 |
---|---|---|
committer | Vladimir Druzenko <vvd@FreeBSD.org> | 2025-02-06 16:43:24 +0000 |
commit | 9135117d5f0808ab00c74fcbb88a2b95563765e8 (patch) | |
tree | efec94d65b2b1d5c3f952d1390cf603d8108bf67 | |
parent | 2e50d89865f220437c0be45595e7de4f3e558cd3 (diff) |
games/prismlauncher: Add missing dependency
Fix SSL handshake error due to missing dependency security/ca_root_nss
causing offline Microsoft account.
PR: 284618
Approved by: Alexander Vereeken <Alexander88207@protonmail.com> (maintainer)
-rw-r--r-- | games/prismlauncher/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/games/prismlauncher/Makefile b/games/prismlauncher/Makefile index 3acf99eb7470..38e57a871a33 100644 --- a/games/prismlauncher/Makefile +++ b/games/prismlauncher/Makefile @@ -1,5 +1,6 @@ PORTNAME= prismlauncher DISTVERSION= 9.2 +PORTREVISION= 1 CATEGORIES= games java MAINTAINER= Alexander88207@protonmail.com @@ -12,7 +13,8 @@ LICENSE_FILE= ${WRKSRC}/COPYING.md LIB_DEPENDS= libcmark.so:textproc/cmark \ libquazip1-qt6.so:archivers/quazip@qt6 \ libtomlplusplus.so:devel/tomlplusplus -RUN_DEPENDS= lwjgl>0:games/lwjgl \ +RUN_DEPENDS= ca_root_nss>=0:security/ca_root_nss \ + lwjgl>0:games/lwjgl \ lwjgl3>0:games/lwjgl3 \ openjdk21>0:java/openjdk21 \ xrandr:x11/xrandr |