Author: sargentd-guest Date: 2008-05-22 16:23:59 +0000 (Thu, 22 May 2008) New Revision: 7154
Modified: packages/trunk/pokerth/debian/ packages/trunk/pokerth/debian/changelog packages/trunk/pokerth/debian/control packages/trunk/pokerth/debian/copyright packages/trunk/pokerth/debian/patches/00list packages/trunk/pokerth/debian/patches/02_use_dejavu_fonts.dpatch packages/trunk/pokerth/debian/patches/03_use_--as-needed.dpatch Log: update to pokerth 0.6.2 Property changes on: packages/trunk/pokerth/debian ___________________________________________________________________ Name: svn-bp:origUrl - http://pkg-games.alioth.debian.org/tarballs/pokerth_0.6.1.orig.tar.gz + http://pkg-games.alioth.debian.org/tarballs/pokerth_0.6.2.orig.tar.gz Modified: packages/trunk/pokerth/debian/changelog =================================================================== --- packages/trunk/pokerth/debian/changelog 2008-05-22 16:10:48 UTC (rev 7153) +++ packages/trunk/pokerth/debian/changelog 2008-05-22 16:23:59 UTC (rev 7154) @@ -1,3 +1,17 @@ +pokerth (0.6.2-1) unstable; urgency=low + + * New upstream release. + * debian/control: + + Replace build-dependency on libssl-dev with libgnutls-dev. + + Add a build-dependency on libboost-iostreams-dev and + libcurl4-gnutls-dev. + * debian/copyright: + + Remove the OpenSSL exception, we link against GnuTLS now. + * debian/patches/: + + Refresh 02_use_dejavu_fonts and 03_use_--as-needed. + + -- Evgeni Golov <[EMAIL PROTECTED]> Thu, 22 May 2008 17:05:13 +0200 + pokerth (0.6.1-2) unstable; urgency=low * Remove pokerth-server's dependency on adduser, it was a mistake Modified: packages/trunk/pokerth/debian/control =================================================================== --- packages/trunk/pokerth/debian/control 2008-05-22 16:10:48 UTC (rev 7153) +++ packages/trunk/pokerth/debian/control 2008-05-22 16:23:59 UTC (rev 7154) @@ -3,7 +3,7 @@ Priority: optional Maintainer: Debian Games Team <[EMAIL PROTECTED]> Uploaders: Mario Iseli <[EMAIL PROTECTED]>, Evgeni Golov <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 5.0.0), dpatch, libqt4-dev, libboost-thread-dev, libboost-date-time-dev, libsdl-mixer1.2-dev, libmikmod2-dev, libboost-filesystem-dev, libboost-program-options-dev, libssl-dev +Build-Depends: debhelper (>= 5.0.0), dpatch, libqt4-dev, libboost-thread-dev, libboost-date-time-dev, libsdl-mixer1.2-dev, libmikmod2-dev, libboost-filesystem-dev, libboost-program-options-dev, libboost-iostreams-dev, libcurl4-gnutls-dev, libgnutls-dev Standards-Version: 3.7.3 Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/pokerth/ Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/pokerth/ Modified: packages/trunk/pokerth/debian/copyright =================================================================== --- packages/trunk/pokerth/debian/copyright 2008-05-22 16:10:48 UTC (rev 7153) +++ packages/trunk/pokerth/debian/copyright 2008-05-22 16:23:59 UTC (rev 7154) @@ -10,12 +10,7 @@ Files: * Copyright: © 2006-2008 Felix Hammer <[EMAIL PROTECTED]>, Florian Thauer <[EMAIL PROTECTED]> 2007-2008 Lothar May <[EMAIL PROTECTED]> -License: GPL-2+ | other - In addition, as a special exception, the copyright holders give permission to - link the code of portions of this program with the OpenSSL library. You must - obey the GNU General Public License in all respects for all of the code used - other than OpenSSL. - Source: http://www.pokerth.net/content/view/38/ +License: GPL-2+ Files: src/core/libircclient/* Copyright: © 2004 Georgy Yunaev <[EMAIL PROTECTED]> Modified: packages/trunk/pokerth/debian/patches/00list =================================================================== --- packages/trunk/pokerth/debian/patches/00list 2008-05-22 16:10:48 UTC (rev 7153) +++ packages/trunk/pokerth/debian/patches/00list 2008-05-22 16:23:59 UTC (rev 7154) @@ -1,7 +1,3 @@ 01_clean_libpokerth 02_use_dejavu_fonts 03_use_--as-needed -#03_fix_gcc43_ftbfs -#04_sane_server_defaults -#05_server_options_svn-r1393 -#06_server.pro_svn-r1397 Modified: packages/trunk/pokerth/debian/patches/02_use_dejavu_fonts.dpatch =================================================================== --- packages/trunk/pokerth/debian/patches/02_use_dejavu_fonts.dpatch 2008-05-22 16:10:48 UTC (rev 7153) +++ packages/trunk/pokerth/debian/patches/02_use_dejavu_fonts.dpatch 2008-05-22 16:23:59 UTC (rev 7154) @@ -1,30 +1,18 @@ #! /bin/sh /usr/share/dpatch/dpatch-run ## 02_use_dejavu_fonts.dpatch by Evgeni Golov <[EMAIL PROTECTED]> ## -## DP: Use DejaVu-Sans instead of Bitstream Vera Sans +## DP: Use DejaVu Sans instead of Bitstream Vera Sans [EMAIL PROTECTED]@ - ---- pokerth.orig/src/gui/qt/mainwindow/mainwindowimpl.cpp 2007-12-18 01:22:13.000000000 +0100 -+++ pokerth/src/gui/qt/mainwindow/mainwindowimpl.cpp 2008-01-19 11:31:37.000000000 +0100 -@@ -320,7 +320,7 @@ +Index: src/gui/qt/gametable/gametableimpl.cpp +=================================================================== +--- old/src/gui/qt/gametable/gametableimpl.cpp (revision 1513) ++++ new/src/gui/qt/gametable/gametableimpl.cpp (working copy) +@@ -322,7 +322,7 @@ font2String = "font-family: \"Lucida Grande\";"; #else font1String = "font-family: \"Nimbus Sans L\";"; - font2String = "font-family: \"Bitstream Vera Sans\";"; -+ font2String = "font-family: \"DejaVu-Sans\";"; ++ font2String = "font-family: \"DejaVu Sans\";"; #endif QString textBrowserFontsize= "10"; QString cashFontSize = "10"; - ---- pokerth.orig/src/pokerth.cpp 2007-12-18 01:22:16.000000000 +0100 -+++ pokerth/src/pokerth.cpp 2008-01-19 13:14:01.000000000 +0100 -@@ -89,7 +89,7 @@ - //set QApplication default font - - QFontDatabase::addApplicationFont (myAppDataPath +"fonts/n019003l.pfb"); -- QFontDatabase::addApplicationFont (myAppDataPath +"fonts/VeraBd.ttf"); -+ QFontDatabase::addApplicationFont (myAppDataPath +"fonts/DejaVuSans-Bold.ttf"); - QFontDatabase::addApplicationFont (myAppDataPath +"fonts/c059013l.pfb"); - - #ifdef _WIN32 Modified: packages/trunk/pokerth/debian/patches/03_use_--as-needed.dpatch =================================================================== --- packages/trunk/pokerth/debian/patches/03_use_--as-needed.dpatch 2008-05-22 16:10:48 UTC (rev 7153) +++ packages/trunk/pokerth/debian/patches/03_use_--as-needed.dpatch 2008-05-22 16:23:59 UTC (rev 7154) @@ -4,16 +4,16 @@ ## DP: Re-enable --as-needed for pokerth, after it was removed as defult ## DP: from the libqt4-dev package. [EMAIL PROTECTED]@ - ---- old/pokerth_game.pro 2008-03-13 23:43:06.000000000 +0100 -+++ new/pokerth_game.pro 2008-03-13 23:44:23.000000000 +0100 -@@ -10,6 +10,8 @@ - CONFIG += qt thread embed_manifest_exe exceptions rtti stl warn_on release - #CONFIG += qt thread embed_manifest_exe exceptions rtti stl warn_on debug +Index: pokerth_game.pro +=================================================================== +--- old/pokerth_game.pro (revision 1513) ++++ new/pokerth_game.pro (working copy) +@@ -20,6 +20,8 @@ + DEFINES += PREFIX=\"$${PREFIX}\" + TARGET = pokerth +QMAKE_LFLAGS += -Wl,--as-needed + - #Uncomment this for RELEASE - #QTPLUGIN += qjpeg qgif - + INCLUDEPATH += . \ + src \ + src/engine \ _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

