r14667 - in packages/tags/pokerth: ! dirs' list truncated !

Evgeni Golov evgeni at moszumanska.debian.org
Sun Nov 24 13:31:41 UTC 2013


Author: evgeni
Date: 2013-11-24 13:31:41 +0000 (Sun, 24 Nov 2013)
New Revision: 14667

Added:
   packages/tags/pokerth/1.1.0~beta3-1/
   packages/tags/pokerth/1.1.0~beta3-1/debian/
   packages/tags/pokerth/1.1.0~beta3-1/debian/patches/
   packages/tags/pokerth/1.1.0~beta3-1/debian/patches/01_look_in_multiarch_dirs.patch
   packages/tags/pokerth/1.1.0~beta3-1/debian/patches/series
Removed:
   packages/tags/pokerth/1.1.0~beta3-1/debian/
   packages/tags/pokerth/1.1.0~beta3-1/debian/patches/
   packages/tags/pokerth/1.1.0~beta3-1/debian/patches/series
Log:
[svn-buildpackage] Tagging pokerth 1.1.0~beta3-1

Copied: packages/tags/pokerth/1.1.0~beta3-1/debian/patches/01_look_in_multiarch_dirs.patch (from rev 14666, packages/trunk/pokerth/debian/patches/01_look_in_multiarch_dirs.patch)
===================================================================
--- packages/tags/pokerth/1.1.0~beta3-1/debian/patches/01_look_in_multiarch_dirs.patch	                        (rev 0)
+++ packages/tags/pokerth/1.1.0~beta3-1/debian/patches/01_look_in_multiarch_dirs.patch	2013-11-24 13:31:41 UTC (rev 14667)
@@ -0,0 +1,109 @@
+commit 98fef472def6139a34b63a8168d43b83d4658542
+Author: Evgeni Golov <evgeni at golov.de>
+Date:   Sun Oct 20 18:47:23 2013 +0200
+
+    look for libs in $$system(qmake -query QT_INSTALL_LIBS)
+    
+    do not look for libs in $${PREFIX}/lib64 but in
+    $$system(qmake -query QT_INSTALL_LIBS)
+    that way we find libs in /usr/lib/x86_64-linux-gnu and other
+    multiarch dirs on Debian-like systems.
+
+diff --git a/connectivity.pro b/connectivity.pro
+index 5f4de82..5bd9df5 100644
+--- a/connectivity.pro
++++ b/connectivity.pro
+@@ -41,13 +41,13 @@ unix : !mac {
+ 
+ 	QMAKE_LIBDIR += lib $${PREFIX}/lib /opt/gsasl/lib
+ 	INCLUDEPATH += $${PREFIX}/include
+-	LIB_DIRS = $${PREFIX}/lib $${PREFIX}/lib64
++	LIB_DIRS = $${PREFIX}/lib $$system(qmake -query QT_INSTALL_LIBS)
+ 	BOOST_PROGRAM_OPTIONS = boost_program_options boost_program_options-mt
+ 	BOOST_SYS = boost_system boost_system-mt
+ 
+ 
+ 	#
+-	# searching in $PREFIX/lib and $PREFIX/lib64
++	# searching in $PREFIX/lib and $$system(qmake -query QT_INSTALL_LIBS)
+ 	# to override the default '/usr' pass PREFIX
+ 	# variable to qmake.
+ 	#
+diff --git a/load.pro b/load.pro
+index c2deb47..266864c 100644
+--- a/load.pro
++++ b/load.pro
+@@ -42,14 +42,14 @@ unix : !mac {
+ 
+ 	QMAKE_LIBDIR += lib $${PREFIX}/lib /opt/gsasl/lib
+ 	INCLUDEPATH += $${PREFIX}/include
+-	LIB_DIRS = $${PREFIX}/lib $${PREFIX}/lib64
++	LIB_DIRS = $${PREFIX}/lib $$system(qmake -query QT_INSTALL_LIBS)
+ 	BOOST_THREAD = boost_thread boost_thread-mt
+ 	BOOST_PROGRAM_OPTIONS = boost_program_options boost_program_options-mt
+ 	BOOST_SYS = boost_system boost_system-mt
+ 
+ 
+ 	#
+-	# searching in $PREFIX/lib and $PREFIX/lib64
++	# searching in $PREFIX/lib and $$system(qmake -query QT_INSTALL_LIBS)
+ 	# to override the default '/usr' pass PREFIX
+ 	# variable to qmake.
+ 	#
+diff --git a/pokerth_game.pro b/pokerth_game.pro
+index 294dce3..f2b24ac 100644
+--- a/pokerth_game.pro
++++ b/pokerth_game.pro
+@@ -407,7 +407,7 @@ unix:!mac {
+ 	!android{
+ 		LIBPATH += $${PREFIX}/lib /opt/gsasl/lib
+ 		LIB_DIRS = $${PREFIX}/lib \
+-			$${PREFIX}/lib64
++			$$system(qmake -query QT_INSTALL_LIBS)
+ 	}
+ 	android{
+ 		LIBPATH += $${PREFIX}/lib/armv7
+@@ -426,7 +426,7 @@ unix:!mac {
+ 	BOOST_RANDOM = boost_random \
+ 		boost_random-mt
+ 
+-	# searching in $PREFIX/lib and $PREFIX/lib64
++	# searching in $PREFIX/lib and $$system(qmake -query QT_INSTALL_LIBS)
+ 	# to override the default '/usr' pass PREFIX
+ 	# variable to qmake.
+ 	for(dir, LIB_DIRS):exists($$dir) {
+diff --git a/pokerth_server.pro b/pokerth_server.pro
+index d27a0e7..e9935c0 100644
+--- a/pokerth_server.pro
++++ b/pokerth_server.pro
+@@ -175,7 +175,7 @@ unix : !mac {
+ 
+ 	LIBPATH += lib $${PREFIX}/lib /opt/gsasl/lib
+ 	INCLUDEPATH += $${PREFIX}/include
+-	LIB_DIRS = $${PREFIX}/lib $${PREFIX}/lib64
++	LIB_DIRS = $${PREFIX}/lib $$system(qmake -query QT_INSTALL_LIBS)
+ 	BOOST_FS = boost_filesystem boost_filesystem-mt
+ 	BOOST_THREAD = boost_thread boost_thread-mt
+ 	BOOST_PROGRAM_OPTIONS = boost_program_options boost_program_options-mt
+@@ -185,7 +185,7 @@ unix : !mac {
+ 	BOOST_RANDOM = boost_random boost_random-mt
+ 
+ 	#
+-	# searching in $PREFIX/lib and $PREFIX/lib64
++	# searching in $PREFIX/lib and $$system(qmake -query QT_INSTALL_LIBS)
+ 	# to override the default '/usr' pass PREFIX
+ 	# variable to qmake.
+ 	#
+diff --git a/zlib_compress.pro b/zlib_compress.pro
+index d141ac0..6ac0437 100644
+--- a/zlib_compress.pro
++++ b/zlib_compress.pro
+@@ -48,7 +48,7 @@ unix : !mac {
+ 	#QMAKE_CXXFLAGS += -ffunction-sections -fdata-sections
+ 	#QMAKE_LFLAGS += -Wl,--gc-sections
+ 
+-	LIB_DIRS = $${PREFIX}/lib $${PREFIX}/lib64
++	LIB_DIRS = $${PREFIX}/lib $$system(qmake -query QT_INSTALL_LIBS)
+ 	BOOST_FS = boost_filesystem boost_filesystem-mt
+ 	BOOST_IOSTREAMS = boost_iostreams boost_iostreams-mt
+ 	BOOST_SYSTEM = boost_system boost_system-mt

Deleted: packages/tags/pokerth/1.1.0~beta3-1/debian/patches/series
===================================================================
--- packages/trunk/pokerth/debian/patches/series	2013-11-22 11:15:49 UTC (rev 14665)
+++ packages/tags/pokerth/1.1.0~beta3-1/debian/patches/series	2013-11-24 13:31:41 UTC (rev 14667)
@@ -1 +0,0 @@
-03_use_--as-needed.patch

Copied: packages/tags/pokerth/1.1.0~beta3-1/debian/patches/series (from rev 14666, packages/trunk/pokerth/debian/patches/series)
===================================================================
--- packages/tags/pokerth/1.1.0~beta3-1/debian/patches/series	                        (rev 0)
+++ packages/tags/pokerth/1.1.0~beta3-1/debian/patches/series	2013-11-24 13:31:41 UTC (rev 14667)
@@ -0,0 +1,2 @@
+01_look_in_multiarch_dirs.patch
+03_use_--as-needed.patch




More information about the Pkg-games-commits mailing list