r8849 - in packages/trunk/gnujump/debian: . patches

Evgeni Golov sargentd-guest at alioth.debian.org
Mon Feb 16 09:53:59 UTC 2009


Author: sargentd-guest
Date: 2009-02-16 09:53:59 +0000 (Mon, 16 Feb 2009)
New Revision: 8849

Modified:
   packages/trunk/gnujump/debian/changelog
   packages/trunk/gnujump/debian/patches/01_Makefile_am_datadir_fix.patch
   packages/trunk/gnujump/debian/patches/02_manpage_fixes.patch
   packages/trunk/gnujump/debian/patches/03_main_c_include_locale_h.patch
   packages/trunk/gnujump/debian/rules
Log:
* debian/rules:
  + Pass -Wl,--as-needed to LDFLAGS.
  + Don't install upstream ChangeLog for now, it's empty.
* debian/patches/*.patch:
  + Add short descriptions to the patches.



Modified: packages/trunk/gnujump/debian/changelog
===================================================================
--- packages/trunk/gnujump/debian/changelog	2009-02-15 23:48:27 UTC (rev 8848)
+++ packages/trunk/gnujump/debian/changelog	2009-02-16 09:53:59 UTC (rev 8849)
@@ -2,8 +2,13 @@
 
   * debian/control:
     + Make depends and recommends versioned (Closes: #501785)
+  * debian/rules:
+    + Pass -Wl,--as-needed to LDFLAGS.
+    + Don't install upstream ChangeLog for now, it's empty.
+  * debian/patches/*.patch:
+    + Add short descriptions to the patches.
 
- -- Evgeni Golov <sargentd at die-welt.net>  Sun, 12 Oct 2008 14:14:38 +0200
+ -- Evgeni Golov <sargentd at die-welt.net>  Mon, 16 Feb 2009 10:53:06 +0100
 
 gnujump (1.0.6-1) experimental; urgency=low
 

Modified: packages/trunk/gnujump/debian/patches/01_Makefile_am_datadir_fix.patch
===================================================================
--- packages/trunk/gnujump/debian/patches/01_Makefile_am_datadir_fix.patch	2009-02-15 23:48:27 UTC (rev 8848)
+++ packages/trunk/gnujump/debian/patches/01_Makefile_am_datadir_fix.patch	2009-02-16 09:53:59 UTC (rev 8849)
@@ -1,3 +1,6 @@
+We want our data in /usr/share/games/$(package), not in
+/usr/share/$(package)
+
 --- a/src/Makefile.am	2008-08-11 15:04:48.000000000 +0200
 +++ b/src/Makefile.am	2008-09-14 20:13:31.000000000 +0200
 @@ -42,7 +42,7 @@

Modified: packages/trunk/gnujump/debian/patches/02_manpage_fixes.patch
===================================================================
--- packages/trunk/gnujump/debian/patches/02_manpage_fixes.patch	2009-02-15 23:48:27 UTC (rev 8848)
+++ packages/trunk/gnujump/debian/patches/02_manpage_fixes.patch	2009-02-16 09:53:59 UTC (rev 8849)
@@ -1,3 +1,7 @@
+* a "-" must be escaped as "\-" in manpages
+* add info about world ranking
+* fix spelling of upstream's name
+
 --- a/doc/gnujump.6	2008-08-11 15:04:47.000000000 +0200
 +++ b/doc/gnujump.6	2008-09-14 20:26:41.000000000 +0200
 @@ -8,7 +8,7 @@

Modified: packages/trunk/gnujump/debian/patches/03_main_c_include_locale_h.patch
===================================================================
--- packages/trunk/gnujump/debian/patches/03_main_c_include_locale_h.patch	2009-02-15 23:48:27 UTC (rev 8848)
+++ packages/trunk/gnujump/debian/patches/03_main_c_include_locale_h.patch	2009-02-16 09:53:59 UTC (rev 8849)
@@ -1,3 +1,5 @@
+Inlude locale.h or we will FTBFS with -O0
+
 --- a/src/main.c	2008-09-23 16:17:29.000000000 +0200
 +++ b/src/main.c	2008-09-24 14:08:29.000000000 +0200
 @@ -26,6 +26,8 @@

Modified: packages/trunk/gnujump/debian/rules
===================================================================
--- packages/trunk/gnujump/debian/rules	2009-02-15 23:48:27 UTC (rev 8848)
+++ packages/trunk/gnujump/debian/rules	2009-02-16 09:53:59 UTC (rev 8849)
@@ -13,7 +13,7 @@
 	dh_testdir
 	autoreconf -f -i -s
 	./configure --prefix=/usr --bindir=/usr/games --datadir=/usr/share/games \
-		 CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)"
+		 CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS) -Wl,--as-needed"
 	touch $@
 
 build: build-stamp
@@ -58,7 +58,8 @@
 binary-indep: build install
 	dh_testdir -i
 	dh_testroot -i
-	dh_installchangelogs -i ChangeLog
+	# Don't install upstream ChangeLog for now, it's empty.
+	dh_installchangelogs -i
 	dh_installdocs -i
 	dh_installman -i
 	dh_installmenu -i
@@ -76,7 +77,8 @@
 binary-arch: build install
 	dh_testdir -a
 	dh_testroot -a
-	dh_installchangelogs -a ChangeLog
+	# Don't install upstream ChangeLog for now, it's empty.
+	dh_installchangelogs -a
 	dh_installdocs -a
 	dh_installman -a
 	dh_installmenu -a




More information about the Pkg-games-commits mailing list