diff --git a/games/pokerth/Makefile b/games/pokerth/Makefile new file mode 100644 index 00000000000..1347eaf95ee --- /dev/null +++ b/games/pokerth/Makefile @@ -0,0 +1,57 @@ +# $OpenBSD: Makefile,v 1.1.1.1 2008/04/08 09:51:15 ajacoutot Exp $ + +COMMENT= Qt4 poker game with online capabilities + +V= 0.6.1 +DISTNAME= PokerTH-${V}.src +PKGNAME= pokerth-${V} +CATEGORIES= games x11 + +HOMEPAGE= http://www.pokerth.net/ + +# GPLv2 +PERMIT_PACKAGE_CDROM= Yes +PERMIT_PACKAGE_FTP= Yes +PERMIT_DISTFILES_CDROM= Yes +PERMIT_DISTFILES_FTP= Yes + +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pokerth/} + +WRKDIST= ${WRKDIR}/${DISTNAME:S/.s/-s/g} + +EXTRACT_SUFX= .tar.bz2 + +WANTLIB= ICE SDL SM X11 Xcursor Xext Xfixes Xi Xinerama Xrandr \ + Xrender c crypto fontconfig freetype glib-2.0 \ + gthread-2.0 m png pthread stdc++ z QtGui + +MODULES= devel/gettext \ + x11/qt4 + +RUN_DEPENDS= :desktop-file-utils-*:devel/desktop-file-utils +LIB_DEPENDS= SDL_mixer::devel/sdl-mixer \ + boost_filesystem-mt.>=1,boost_thread-mt,boost_program_options-mt::devel/boost + +CONFIGURE_ENV= HOME=${WRKDIR} + +MAKE_FLAGS= QMAKE_CXX=${CXX} \ + QMAKE_CXXFLAGS_RELEASE="${CXXFLAGS}" \ + HOME=${WRKDIR} \ + PREFIX=${PREFIX} + +FAKE_FLAGS= INSTALL_ROOT=${DESTDIR} + +VMEM_WARNING= Yes +NO_REGRESS= Yes +USE_GMAKE= Yes +USE_X11= Yes + +do-configure: + cd ${WRKSRC} && \ + env -i ${CONFIGURE_ENV} qmake4 ${MAKE_FLAGS} pokerth.pro + +post-install: + ${INSTALL_PROGRAM} ${WRKSRC}/pokerth ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/bin/pokerth_server ${PREFIX}/bin + +.include diff --git a/games/pokerth/distinfo b/games/pokerth/distinfo new file mode 100644 index 00000000000..fe730449be1 --- /dev/null +++ b/games/pokerth/distinfo @@ -0,0 +1,5 @@ +MD5 (PokerTH-0.6.1.src.tar.bz2) = nsx8BAyFWvRGw3fzoXWLIg== +RMD160 (PokerTH-0.6.1.src.tar.bz2) = k9b6f+vKKuAbWOmtvFm0ZH6K6FQ= +SHA1 (PokerTH-0.6.1.src.tar.bz2) = pGu5KIUCZ7PYs022R2oy6XXS5hU= +SHA256 (PokerTH-0.6.1.src.tar.bz2) = veYJ4X7WzAu5t6jAgIbBiRn8y9ewbcdpY9vrIQr8x9k= +SIZE (PokerTH-0.6.1.src.tar.bz2) = 4333481 diff --git a/games/pokerth/patches/patch-pokerth_server_pro b/games/pokerth/patches/patch-pokerth_server_pro new file mode 100644 index 00000000000..e3b67913b2d --- /dev/null +++ b/games/pokerth/patches/patch-pokerth_server_pro @@ -0,0 +1,12 @@ +$OpenBSD: patch-pokerth_server_pro,v 1.1.1.1 2008/04/08 09:51:15 ajacoutot Exp $ +--- pokerth_server.pro.orig Wed Mar 12 10:38:32 2008 ++++ pokerth_server.pro Mon Apr 7 19:39:43 2008 +@@ -217,6 +217,8 @@ unix : !mac { + } + } + ++ LIBS += -lboost_filesystem-mt -lboost_thread-mt ++ LIBS += -lboost_program_options-mt -liconv + LIBS += -lcrypto + TARGETDEPS += ./lib/libpokerth_lib.a + diff --git a/games/pokerth/patches/patch-src_core_libircclient_include_config_h b/games/pokerth/patches/patch-src_core_libircclient_include_config_h new file mode 100644 index 00000000000..c812c5c75e7 --- /dev/null +++ b/games/pokerth/patches/patch-src_core_libircclient_include_config_h @@ -0,0 +1,12 @@ +$OpenBSD: patch-src_core_libircclient_include_config_h,v 1.1.1.1 2008/04/08 09:51:15 ajacoutot Exp $ +--- src/core/libircclient/include/config.h.orig Wed Mar 12 10:37:21 2008 ++++ src/core/libircclient/include/config.h Sat Apr 5 09:15:49 2008 +@@ -2,7 +2,7 @@ + /* include/config.h.in. Generated from configure.in by autoheader. */ + + /* Define to 1 if you have the `gethostbyname_r' function. */ +-#ifndef __APPLE__ ++#if !defined(__APPLE__) && !defined(__OpenBSD__) + #define HAVE_GETHOSTBYNAME_R 1 + #endif + diff --git a/games/pokerth/patches/patch-src_core_linux_convhelper_cpp b/games/pokerth/patches/patch-src_core_linux_convhelper_cpp new file mode 100644 index 00000000000..701db3216da --- /dev/null +++ b/games/pokerth/patches/patch-src_core_linux_convhelper_cpp @@ -0,0 +1,25 @@ +$OpenBSD: patch-src_core_linux_convhelper_cpp,v 1.1.1.1 2008/04/08 09:51:15 ajacoutot Exp $ +--- src/core/linux/convhelper.cpp.orig Wed Mar 12 10:37:20 2008 ++++ src/core/linux/convhelper.cpp Mon Apr 7 19:37:43 2008 +@@ -37,8 +37,8 @@ ConvHelper::NativeToUtf8(const std::string &inStr) + { + string retStr(inStr); + size_t insize = inStr.length(); +-#ifdef __APPLE__ +- const char *inbuf = inStr.data(); ++#if defined(__APPLE__) || defined(__OpenBSD__) ++ const char* inbuf = (char*)inStr.data(); + #else + char *inbuf = const_cast(inStr.data()); + #endif +@@ -72,8 +72,8 @@ ConvHelper::Utf8ToNative(const std::string &inStr) + { + string retStr(inStr); + size_t insize = inStr.length(); +-#ifdef __APPLE__ +- const char *inbuf = inStr.data(); ++#if defined(__APPLE__) || defined(__OpenBSD__) ++ const char* inbuf = (char*)inStr.data(); + #else + char *inbuf = const_cast(inStr.data()); + #endif diff --git a/games/pokerth/pkg/DESCR b/games/pokerth/pkg/DESCR new file mode 100644 index 00000000000..b95f8df31d7 --- /dev/null +++ b/games/pokerth/pkg/DESCR @@ -0,0 +1,3 @@ +PokerTH is a free implementation of "Texas hold'em" card game. +You can play the popular "Texas Hold'em" poker variant against up to six +computer-opponents or play network games with people all over the world. diff --git a/games/pokerth/pkg/PLIST b/games/pokerth/pkg/PLIST new file mode 100644 index 00000000000..8011eeacad4 --- /dev/null +++ b/games/pokerth/pkg/PLIST @@ -0,0 +1,253 @@ +@comment $OpenBSD: PLIST,v 1.1.1.1 2008/04/08 09:51:15 ajacoutot Exp $ +bin/pokerth +bin/pokerth_server +share/applications/pokerth.desktop +share/pixmaps/ +share/pixmaps/pokerth.png +share/pokerth/ +share/pokerth/data/ +share/pokerth/data/data-copyright.txt +share/pokerth/data/fonts/ +share/pokerth/data/fonts/VeraBd.ttf +share/pokerth/data/fonts/c059013l.pfb +share/pokerth/data/fonts/n019003l.pfb +share/pokerth/data/gfx/ +share/pokerth/data/gfx/avatars/ +share/pokerth/data/gfx/avatars/default/ +share/pokerth/data/gfx/avatars/default/misc/ +share/pokerth/data/gfx/avatars/default/misc/00a0b3d26a67841239b8883183b7a8f0.png +share/pokerth/data/gfx/avatars/default/misc/030a14c105d3fd164cb4bae54bad6191.png +share/pokerth/data/gfx/avatars/default/misc/08ced517579b3d258c947aec6c0a0dd4.png +share/pokerth/data/gfx/avatars/default/misc/08e18c4e25a5052575e6a409e71959f5.png +share/pokerth/data/gfx/avatars/default/misc/0f2ca195ebaec613ffc8626185415b18.png +share/pokerth/data/gfx/avatars/default/misc/150bfd890394dceb33c66ec8d033b7f4.png +share/pokerth/data/gfx/avatars/default/misc/192f2abb785082aa9cbd745f763c7afb.png +share/pokerth/data/gfx/avatars/default/misc/20e7e95df017855a44a16ff54bb8252a.png +share/pokerth/data/gfx/avatars/default/misc/20f0819f145c3a6e7272adc2909f35e7.png +share/pokerth/data/gfx/avatars/default/misc/276648a9e4397177ba6e065bb8392a0f.png +share/pokerth/data/gfx/avatars/default/misc/2b0fca47b50e2cc4f910eba9ffa858a9.png +share/pokerth/data/gfx/avatars/default/misc/2d5248926bda0c674f31e25981de33a4.png +share/pokerth/data/gfx/avatars/default/misc/3036f43bab1f56a3c3dd693c0551bbd8.png +share/pokerth/data/gfx/avatars/default/misc/32955c19e24eba10fd63f1dcc75b5a25.png +share/pokerth/data/gfx/avatars/default/misc/3956df277e41217641829542a4591c5f.png +share/pokerth/data/gfx/avatars/default/misc/41c06d77495fbcd69cfbb4457ebc11dc.png +share/pokerth/data/gfx/avatars/default/misc/44d23de146bd9d753571915226c44cfd.png +share/pokerth/data/gfx/avatars/default/misc/53d7f2bda9b904adf62153a9341d48db.png +share/pokerth/data/gfx/avatars/default/misc/5858abb9942a4d7faabfb6e7ff2520fd.png +share/pokerth/data/gfx/avatars/default/misc/5e802a524d92f339ad1adedf5675c467.png +share/pokerth/data/gfx/avatars/default/misc/663f3d7a9ad330b2c77aa5f542fedf38.png +share/pokerth/data/gfx/avatars/default/misc/6b1ae8bfc14ffb2ae3247c7327b1f5ed.png +share/pokerth/data/gfx/avatars/default/misc/70bf201de8b46b19a30b94d6ea717043.png +share/pokerth/data/gfx/avatars/default/misc/71348dd09e29dbe4ee6accc25d74bc94.png +share/pokerth/data/gfx/avatars/default/misc/76fcf5f16951e17a63e4ff50d09278f7.png +share/pokerth/data/gfx/avatars/default/misc/778eca12f78519ac598f8858bdaf5ffa.png +share/pokerth/data/gfx/avatars/default/misc/7b7d565bf61d15722085e0489c474078.png +share/pokerth/data/gfx/avatars/default/misc/7ee6c7e39bdecf872f782f7fefeffc6c.png +share/pokerth/data/gfx/avatars/default/misc/82487a6a11cfd4174d3c56c13f47c03e.png +share/pokerth/data/gfx/avatars/default/misc/8426dadd34be5db4f4cdfa12ec1e8c53.png +share/pokerth/data/gfx/avatars/default/misc/85de4941160836a15745859dfcd9828e.png +share/pokerth/data/gfx/avatars/default/misc/88fdee1614fdbf125d0a82bc349da0ff.png +share/pokerth/data/gfx/avatars/default/misc/910800128fa4afacd15c61a67e6d01a5.png +share/pokerth/data/gfx/avatars/default/misc/92875006f8786c9fa082ca13ae188a28.png +share/pokerth/data/gfx/avatars/default/misc/9a106f3f5f9647c77174da1977dcb3c1.png +share/pokerth/data/gfx/avatars/default/misc/9ae421286ad12b4a5e7d2ca767e3d9a3.png +share/pokerth/data/gfx/avatars/default/misc/9ff203623c75d8570126599d45922aa3.png +share/pokerth/data/gfx/avatars/default/misc/a8c3d13377c17b06341b3904185ca30d.png +share/pokerth/data/gfx/avatars/default/misc/aafbbe402e1883657b2db3e2f7574e5a.png +share/pokerth/data/gfx/avatars/default/misc/bb2ae3396e8523545a955ceec97a273b.png +share/pokerth/data/gfx/avatars/default/misc/c10142a7b42f9e5c89ad4c644c570b74.png +share/pokerth/data/gfx/avatars/default/misc/c824fc964b0f051569d961d24d0897cd.png +share/pokerth/data/gfx/avatars/default/misc/cd78743ae833cb838395e126ddc4b298.png +share/pokerth/data/gfx/avatars/default/misc/d0b3c777001d2548fc87c112a181ddbf.png +share/pokerth/data/gfx/avatars/default/misc/d2dfc050bd61af58f05853864d5f9c4e.png +share/pokerth/data/gfx/avatars/default/misc/d2e74be7f80276f90091f90b2a78ddfb.png +share/pokerth/data/gfx/avatars/default/misc/d7204e29016ca8963c02f46d4d41dc7d.png +share/pokerth/data/gfx/avatars/default/misc/d9a4712147692ace05d5b87a5f76223f.png +share/pokerth/data/gfx/avatars/default/misc/dccda20e75901d151e199cf0d74451d4.png +share/pokerth/data/gfx/avatars/default/misc/e4e0c2850b68a65dcce6e83512e60665.png +share/pokerth/data/gfx/avatars/default/misc/e604d933cf5dcbef120c516c66083b13.png +share/pokerth/data/gfx/avatars/default/misc/e6a7b4c2d32f5c5ff8cd895b928b5594.png +share/pokerth/data/gfx/avatars/default/misc/e6e6b9af8c7bea68e359538e1298efd6.png +share/pokerth/data/gfx/avatars/default/misc/eb427f89e4773e87afb87505885cf698.png +share/pokerth/data/gfx/avatars/default/misc/eb7612a2b515bd826babec8f649b44cf.png +share/pokerth/data/gfx/avatars/default/misc/ed1dc23e53b713ab69850f808e39498e.png +share/pokerth/data/gfx/avatars/default/misc/f08cff60124b7690f13319fcf67a0b26.png +share/pokerth/data/gfx/avatars/default/misc/f12b7ce0222d0303a0de70c7dfa9ac0f.png +share/pokerth/data/gfx/avatars/default/misc/f3e4763d3f5ba1a4bde813667efa82a1.png +share/pokerth/data/gfx/avatars/default/misc/f4893bf7b611d72231e94fa487cc74e9.png +share/pokerth/data/gfx/avatars/default/misc/f48c98f3814cafa82e1c444915ceb0a7.png +share/pokerth/data/gfx/avatars/default/misc/f69440dd7d5483cc33d93c52cbb2c64d.png +share/pokerth/data/gfx/avatars/default/misc/fee2595e8a7be7ea50a39604e8c72e5e.png +share/pokerth/data/gfx/avatars/default/people/ +share/pokerth/data/gfx/avatars/default/people/0c04318e6fa54534935e3e6cfe12c4a1.png +share/pokerth/data/gfx/avatars/default/people/0c24b06358f7b308d6b47c59ebace73d.png +share/pokerth/data/gfx/avatars/default/people/14e3f39cc775608bcecf5597248b3558.png +share/pokerth/data/gfx/avatars/default/people/16b702a87f681c4343486523a1a867e8.png +share/pokerth/data/gfx/avatars/default/people/237c518f2bb6ac99f6eb1012e18460b9.png +share/pokerth/data/gfx/avatars/default/people/39fa73528e8dc1a5a478938affe79100.png +share/pokerth/data/gfx/avatars/default/people/45e16bc214942321a3814fb43a84a88e.png +share/pokerth/data/gfx/avatars/default/people/490ed3a748f6f4d6c261436198f2368f.png +share/pokerth/data/gfx/avatars/default/people/6ad16e2c3e4b8e4e6da47032d4372f4b.png +share/pokerth/data/gfx/avatars/default/people/6ecea83d9fac6b4cae97e2fccd09a5f6.png +share/pokerth/data/gfx/avatars/default/people/74672ebfa2ab02968386c4e441a08668.png +share/pokerth/data/gfx/avatars/default/people/93dec21823a314fb8ef2261b7aa75ae5.png +share/pokerth/data/gfx/avatars/default/people/95df673e5ee4d02f0f95d5c7ff091cfb.png +share/pokerth/data/gfx/avatars/default/people/9f49fc3d6062ddc08dc6bbd9ef9b399d.png +share/pokerth/data/gfx/avatars/default/people/bc28d08c451a775f9e332c14a397096b.png +share/pokerth/data/gfx/avatars/default/people/bed234c6672d512bdb4c2768f0b3f90c.png +share/pokerth/data/gfx/avatars/default/people/c018b15b8164a303b9395b1e89c51004.png +share/pokerth/data/gfx/avatars/default/people/c6d57064672b9a6c78a06248d2a60770.png +share/pokerth/data/gfx/avatars/default/people/cbd2e0c6ee579fb8e0f3942639cf988d.png +share/pokerth/data/gfx/avatars/default/people/d21268e1d2ec969367ee5b54bd34738b.png +share/pokerth/data/gfx/avatars/default/people/d66940c138c207c68a338769d683e691.png +share/pokerth/data/gfx/avatars/default/people/d6f8a45e9243b7e7e4e2c8e41df1c9f5.png +share/pokerth/data/gfx/avatars/default/people/d90bd3fbbe3671ebac5f9f223d0c6d65.png +share/pokerth/data/gfx/avatars/default/people/da34195981d255656f39c05481de3b6a.png +share/pokerth/data/gfx/avatars/default/people/e3e1ae15f7d808fce16c26c049e2cbe9.png +share/pokerth/data/gfx/avatars/default/people/e54e67ebd5265cf549362a2cda5a999c.png +share/pokerth/data/gfx/avatars/default/people/ef0975f38a367a45cb8042b438957304.png +share/pokerth/data/gfx/cards/ +share/pokerth/data/gfx/cards/default/ +share/pokerth/data/gfx/cards/default/0.png +share/pokerth/data/gfx/cards/default/1.png +share/pokerth/data/gfx/cards/default/10.png +share/pokerth/data/gfx/cards/default/11.png +share/pokerth/data/gfx/cards/default/12.png +share/pokerth/data/gfx/cards/default/13.png +share/pokerth/data/gfx/cards/default/14.png +share/pokerth/data/gfx/cards/default/15.png +share/pokerth/data/gfx/cards/default/16.png +share/pokerth/data/gfx/cards/default/17.png +share/pokerth/data/gfx/cards/default/18.png +share/pokerth/data/gfx/cards/default/19.png +share/pokerth/data/gfx/cards/default/2.png +share/pokerth/data/gfx/cards/default/20.png +share/pokerth/data/gfx/cards/default/21.png +share/pokerth/data/gfx/cards/default/22.png +share/pokerth/data/gfx/cards/default/23.png +share/pokerth/data/gfx/cards/default/24.png +share/pokerth/data/gfx/cards/default/25.png +share/pokerth/data/gfx/cards/default/26.png +share/pokerth/data/gfx/cards/default/27.png +share/pokerth/data/gfx/cards/default/28.png +share/pokerth/data/gfx/cards/default/29.png +share/pokerth/data/gfx/cards/default/3.png +share/pokerth/data/gfx/cards/default/30.png +share/pokerth/data/gfx/cards/default/31.png +share/pokerth/data/gfx/cards/default/32.png +share/pokerth/data/gfx/cards/default/33.png +share/pokerth/data/gfx/cards/default/34.png +share/pokerth/data/gfx/cards/default/35.png +share/pokerth/data/gfx/cards/default/36.png +share/pokerth/data/gfx/cards/default/37.png +share/pokerth/data/gfx/cards/default/38.png +share/pokerth/data/gfx/cards/default/39.png +share/pokerth/data/gfx/cards/default/4.png +share/pokerth/data/gfx/cards/default/40.png +share/pokerth/data/gfx/cards/default/41.png +share/pokerth/data/gfx/cards/default/42.png +share/pokerth/data/gfx/cards/default/43.png +share/pokerth/data/gfx/cards/default/44.png +share/pokerth/data/gfx/cards/default/45.png +share/pokerth/data/gfx/cards/default/46.png +share/pokerth/data/gfx/cards/default/47.png +share/pokerth/data/gfx/cards/default/48.png +share/pokerth/data/gfx/cards/default/49.png +share/pokerth/data/gfx/cards/default/5.png +share/pokerth/data/gfx/cards/default/50.png +share/pokerth/data/gfx/cards/default/51.png +share/pokerth/data/gfx/cards/default/6.png +share/pokerth/data/gfx/cards/default/7.png +share/pokerth/data/gfx/cards/default/8.png +share/pokerth/data/gfx/cards/default/9.png +share/pokerth/data/gfx/cards/default/flipside.png +share/pokerth/data/gfx/cards/default/flipside_tux.png +share/pokerth/data/gfx/gui/ +share/pokerth/data/gfx/gui/misc/ +share/pokerth/data/gfx/gui/misc/1px.png +share/pokerth/data/gfx/gui/misc/background_gamelist.png +share/pokerth/data/gfx/gui/misc/fileopen16.png +share/pokerth/data/gfx/gui/misc/handRanking.png +share/pokerth/data/gfx/gui/misc/lock.png +share/pokerth/data/gfx/gui/misc/logoChip3D.png +share/pokerth/data/gfx/gui/misc/radiobutton_checked.png +share/pokerth/data/gfx/gui/misc/radiobutton_checked_hover.png +share/pokerth/data/gfx/gui/misc/radiobutton_pressed.png +share/pokerth/data/gfx/gui/misc/radiobutton_unchecked.png +share/pokerth/data/gfx/gui/misc/radiobutton_unchecked_hover.png +share/pokerth/data/gfx/gui/misc/toolboxFrameBG.png +share/pokerth/data/gfx/gui/misc/windowicon.png +share/pokerth/data/gfx/gui/table/ +share/pokerth/data/gfx/gui/table/default/ +share/pokerth/data/gfx/gui/table/default/action_allin.png +share/pokerth/data/gfx/gui/table/default/action_bet.png +share/pokerth/data/gfx/gui/table/default/action_call.png +share/pokerth/data/gfx/gui/table/default/action_check.png +share/pokerth/data/gfx/gui/table/default/action_fold.png +share/pokerth/data/gfx/gui/table/default/action_raise.png +share/pokerth/data/gfx/gui/table/default/action_set.png +share/pokerth/data/gfx/gui/table/default/action_template.xcf +share/pokerth/data/gfx/gui/table/default/action_winner.png +share/pokerth/data/gfx/gui/table/default/bigblindPuck.png +share/pokerth/data/gfx/gui/table/default/cardholder_flop.png +share/pokerth/data/gfx/gui/table/default/cardholder_river.png +share/pokerth/data/gfx/gui/table/default/cardholder_turn.png +share/pokerth/data/gfx/gui/table/default/dealerPuck.png +share/pokerth/data/gfx/gui/table/default/genereticAvatar.png +share/pokerth/data/gfx/gui/table/default/opponentBoxActiveGlow.png +share/pokerth/data/gfx/gui/table/default/opponentBoxInactiveGlow.png +share/pokerth/data/gfx/gui/table/default/playerBoxActiveGlow.png +share/pokerth/data/gfx/gui/table/default/playerBoxActiveGlow_0.6.png +share/pokerth/data/gfx/gui/table/default/playerBoxInactiveGlow.png +share/pokerth/data/gfx/gui/table/default/playerBoxInactiveGlow_0.6.png +share/pokerth/data/gfx/gui/table/default/playeraction_blue.png +share/pokerth/data/gfx/gui/table/default/playeraction_blue_checked.png +share/pokerth/data/gfx/gui/table/default/playeraction_blue_checked_hover.png +share/pokerth/data/gfx/gui/table/default/playeraction_blue_hover.png +share/pokerth/data/gfx/gui/table/default/playeraction_green.png +share/pokerth/data/gfx/gui/table/default/playeraction_green_checked.png +share/pokerth/data/gfx/gui/table/default/playeraction_green_checked_hover.png +share/pokerth/data/gfx/gui/table/default/playeraction_green_hover.png +share/pokerth/data/gfx/gui/table/default/playeraction_red.png +share/pokerth/data/gfx/gui/table/default/playeraction_red_checked.png +share/pokerth/data/gfx/gui/table/default/playeraction_red_checked_hover.png +share/pokerth/data/gfx/gui/table/default/playeraction_red_hover.png +share/pokerth/data/gfx/gui/table/default/smallblindPuck.png +share/pokerth/data/gfx/gui/table/default/table.png +share/pokerth/data/misc/ +share/pokerth/data/misc/gpl2.html +share/pokerth/data/sounds/ +share/pokerth/data/sounds/default/ +share/pokerth/data/sounds/default/allin.wav +share/pokerth/data/sounds/default/bet.wav +share/pokerth/data/sounds/default/call.wav +share/pokerth/data/sounds/default/check.wav +share/pokerth/data/sounds/default/dealtwocards.wav +share/pokerth/data/sounds/default/fold.wav +share/pokerth/data/sounds/default/lobbychatnotify.wav +share/pokerth/data/sounds/default/onlinegameready.wav +share/pokerth/data/sounds/default/playerconnected.wav +share/pokerth/data/sounds/default/raise.wav +share/pokerth/data/sounds/default/yourturn.wav +share/pokerth/data/translations/ +share/pokerth/data/translations/pokerth_bg.qm +share/pokerth/data/translations/pokerth_de.qm +share/pokerth/data/translations/pokerth_es.qm +share/pokerth/data/translations/pokerth_fr.qm +share/pokerth/data/translations/pokerth_gr.qm +share/pokerth/data/translations/pokerth_hu.qm +share/pokerth/data/translations/pokerth_it.qm +share/pokerth/data/translations/pokerth_nl.qm +share/pokerth/data/translations/pokerth_no.qm +share/pokerth/data/translations/pokerth_pl.qm +share/pokerth/data/translations/pokerth_ptbr.qm +share/pokerth/data/translations/pokerth_ru.qm +share/pokerth/data/translations/pokerth_sk.qm +share/pokerth/data/translations/pokerth_sv.qm +share/pokerth/data/translations/pokerth_tr.qm +share/pokerth/data/translations/pokerth_zhcn.qm +share/pokerth/data/translations/qt_de.qm +share/pokerth/data/translations/qt_es.qm +share/pokerth/data/translations/qt_fr.qm +share/pokerth/data/translations/qt_nl.qm +share/pokerth/data/translations/qt_ru.qm