r4655 - in packages/trunk/kanatest/debian: . patches

Barry deFreese bddebian-guest at alioth.debian.org
Tue Nov 13 22:48:35 UTC 2007


Author: bddebian-guest
Date: 2007-11-13 22:48:35 +0000 (Tue, 13 Nov 2007)
New Revision: 4655

Added:
   packages/trunk/kanatest/debian/patches/002_kfreebsd_fix.diff
Modified:
   packages/trunk/kanatest/debian/changelog
   packages/trunk/kanatest/debian/patches/series
   packages/trunk/kanatest/debian/rules
Log:
  * New upstream release
  * Fix up clean target
  * Revert 000_config_sub_guess.diff - Improved upstream build system
  * 002_kfreebsd_fix.diff (Closes: #416873)
    + Conditionally include limits.h on linux - Fixes FTBFS on kfreebsd
    + Thanks to Cyril Brulebois for the patch


Modified: packages/trunk/kanatest/debian/changelog
===================================================================
--- packages/trunk/kanatest/debian/changelog	2007-11-13 18:55:30 UTC (rev 4654)
+++ packages/trunk/kanatest/debian/changelog	2007-11-13 22:48:35 UTC (rev 4655)
@@ -1,4 +1,4 @@
-kanatest (0.4.2-3) UNRELEASED; urgency=low
+kanatest (0.4.4-1) UNRELEASED; urgency=low
 
   [ Eddy Petrișor ]
   * Gtk should be written as GTK in the desktop file
@@ -8,10 +8,16 @@
   * Adjusted XS-Vcs-Svn and XS-Vcs-Browser fields in the control file.
 
   [ Barry deFreese ]
+  * New upstream release
   * Add watch file
   * Add Homepage field in control
   * Make distclean not ignore errors
   * Remove XS- from VCS fields in control
+  * Fix up clean target
+  * Revert 000_config_sub_guess.diff - Improved upstream build system
+  * 002_kfreebsd_fix.diff (Closes: #416873)
+    + Conditionally include limits.h on linux - Fixes FTBFS on kfreebsd
+    + Thanks to Cyril Brulebois for the patch
 
   [ Mike O'Connor ]
   * make sure docs/*.pmo are built (Closes: #441711)

Added: packages/trunk/kanatest/debian/patches/002_kfreebsd_fix.diff
===================================================================
--- packages/trunk/kanatest/debian/patches/002_kfreebsd_fix.diff	                        (rev 0)
+++ packages/trunk/kanatest/debian/patches/002_kfreebsd_fix.diff	2007-11-13 22:48:35 UTC (rev 4655)
@@ -0,0 +1,14 @@
+diff -urN kanatest-0.4.4.orig/src/stats.c kanatest-0.4.4/src/stats.c
+--- kanatest-0.4.4.orig/src/stats.c	2007-11-13 16:45:15.000000000 -0500
++++ kanatest-0.4.4/src/stats.c	2007-11-13 16:46:33.000000000 -0500
+@@ -26,7 +26,9 @@
+ #include <stdlib.h>
+ #include <string.h>
+ #include <unistd.h>
+-#include <limits.h>
++#ifdef __linux__
++  #include <limits.h>
++#endif
+ #include <sys/stat.h>
+ #include <gtk/gtk.h>
+ #include <gdk/gdk.h>

Modified: packages/trunk/kanatest/debian/patches/series
===================================================================
--- packages/trunk/kanatest/debian/patches/series	2007-11-13 18:55:30 UTC (rev 4654)
+++ packages/trunk/kanatest/debian/patches/series	2007-11-13 22:48:35 UTC (rev 4655)
@@ -1 +1,2 @@
-000_config_sub_guess.diff
+002_kfreebsd_fix.diff
+

Modified: packages/trunk/kanatest/debian/rules
===================================================================
--- packages/trunk/kanatest/debian/rules	2007-11-13 18:55:30 UTC (rev 4654)
+++ packages/trunk/kanatest/debian/rules	2007-11-13 22:48:35 UTC (rev 4655)
@@ -32,7 +32,6 @@
 build-stamp: config.status
 	dh_testdir
 	$(MAKE)
-	$(MAKE) -C po update-po
 	touch build-stamp
 
 clean:
@@ -41,7 +40,8 @@
 	rm -f build-stamp 
 	[ ! -f Makefile ] || $(MAKE) distclean
 	rm -f po/*.gmo
-	rm -f config.log config.status config.h
+	rm -f po/*.mo
+	rm -f config.log config.h
 	dh_clean
 
 install: build




More information about the Pkg-games-commits mailing list