Package Details: pokerth 1.1.2-51

Git Clone URL: https://aur.archlinux.org/pokerth.git (read-only, click to copy)
Package Base: pokerth
Description: Client to online Poker game written in C++/Qt
Upstream URL: http://www.pokerth.net/
Licenses: GPL, custom
Submitter: blacktav
Maintainer: blacktav
Last Packager: blacktav
Votes: 25
Popularity: 0.22
First Submitted: 2018-01-08 23:25 (UTC)
Last Updated: 2025-05-05 08:49 (UTC)

Pinned Comments

blacktav commented on 2025-03-31 19:11 (UTC) (edited on 2025-03-31 19:15 (UTC) by blacktav)

Because so many issues have developed of late due to the age of the original 1.1.2 release which is now triggering deprecations in associated code (boost, QT amongst others) it is becoming increasingly difficult for PokerTH to age gracefully.

The recommended solution by the PokerTH team is to use a jailed version of the original source code and locked versions of dependencies such as boost & QT: such as that made available for flatpak.

If you prefer to use flatpak (rather than limping along with this AUR release):

1 install flatpak with pacman or whatever

https://archlinux.org/packages/extra/x86_64/flatpak/

2 then head over to https://flathub.org/apps/net.pokerth.PokerTH

to find out how to deploy and run a "stable" version of pokerth

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 Next › Last »

blacktav commented on 2024-06-25 23:35 (UTC)

Bumped for new lib; including tweaks - thanks guys

costor commented on 2024-06-25 23:16 (UTC) (edited on 2024-06-25 23:45 (UTC) by costor)

After updating to 1.1.2-39, package() errors out with install: target '/var/cache/private/pikaur/build/pokerth/pkg/pokerth/usr/share/man/man1/pokerth.1': No such file or directory

Mailaender commented on 2024-05-09 17:00 (UTC)

You can add

  install -Dm644 pokerth.png "$pkgdir/usr/share/icons/hicolor/128x128/apps/pokerth.png"
  install -Dm644 pokerth.svg "$pkgdir/usr/share/icons/hicolor/scalable/apps/pokerth.svg"

for a desktop icons.

xx55tt commented on 2023-09-28 19:50 (UTC) (edited on 2023-09-28 19:50 (UTC) by xx55tt)

Here's a tiny improvement on the existing Abseil patch for the next time you have to bump the pkgrel. Instead of hardcoding the paths to the .so files you can use these linker flags:

--- pokerth-1.1.2-rc/pokerth_game.pro   2023-07-04 22:43:50.069300036 +0200
+++ pokerth-1.1.2-rc/pokerth_game.pro   2023-07-04 23:39:38.849095436 +0200
@@ -524,7 +524,9 @@
        kFreeBSD = $$find(UNAME, "kFreeBSD")
        LIBS += -lsqlite3 \
                -ltinyxml \
-               -lprotobuf
+               -lprotobuf \
+               -labsl_log_internal_check_op \
+               -labsl_log_internal_message
        LIBS += $$BOOST_LIBS
        LIBS += -lSDL \
                -lSDL_mixer \

blacktav commented on 2023-09-28 14:12 (UTC)

bumped for library updates

blacktav commented on 2023-09-06 17:39 (UTC)

@viktoracoric config/configfile.cpp seems to have different naming rules for ANDROID which starts to make it all look rather tangled and not necessarily consistent

viktoracoric commented on 2023-09-06 17:30 (UTC)

@costor specification doesn't say that, doesn't it? For example I have curl config hidden inside that folder. But yeah I agree it's better when it's visible, it's an easy fix, but before I submit, @blacktav what are the issues re: ANDROID, I didn't understand your message, I'll see if that can be resolved.

blacktav commented on 2023-09-06 15:35 (UTC)

Ah yes indeed! and then also issues re: ANDROID Patch reverted: needs more work

costor commented on 2023-09-06 14:58 (UTC) (edited on 2023-09-06 14:59 (UTC) by costor)

@viktoracoric That patch changes the config directory to $XDG_CONFIG_HOME/.pokerth/ when XDG_CONFIG_HOME is defined, which is wrong. Programs shouldn't be hidden in that directory. The correct path would be $XDG_CONFIG_HOME/pokerth/. So without the dot before pokerth.