#! /bin/sh /usr/share/dpatch/dpatch-run ## 02_data_in_usrsharegamespokerth.dpatch by Evgeni Golov ## ## DP: Search for game data in /usr/share/games/pokerth @DPATCH@ --- pokerth.orig/src/gui/qt/qttools/qthelper/qthelper.cpp 2007-11-30 10:38:12.000000000 +0100 +++ pokerth/src/gui/qt/qttools/qthelper/qthelper.cpp 2007-11-20 14:37:31.000000000 +0100 @@ -52,6 +52,9 @@ } else if (QRegExp("usr/games/bin/?$").indexIn(path) != -1) { // we are in /usr/games/bin (like gentoo linux does) path += "/../../share/games/pokerth/data/"; + } else if (QRegExp("usr/games/?$").indexIn(path) != -1) { + // we are in /usr/games (like Debian linux does) + path += "/../share/games/pokerth/"; } else if (QRegExp("bin/?$").indexIn(path) != -1) { // we are in a bin directory. e.g. /usr/bin path += "/../share/pokerth/data/";