[Pkg-kde-commits] rev 397 - in people/dato/packages/trunk/amarok/debian: . patches

Adeodato Simó dato-guest@costa.debian.org
Fri, 14 Jan 2005 00:38:28 +0100


Author: dato-guest
Date: 2005-01-14 00:38:28 +0100 (Fri, 14 Jan 2005)
New Revision: 397

Added:
   people/dato/packages/trunk/amarok/debian/patches/gmo_files_at_build_time.patch
Modified:
   people/dato/packages/trunk/amarok/debian/changelog
Log:
No .gmo files generation at build source time.


Modified: people/dato/packages/trunk/amarok/debian/changelog
===================================================================
--- people/dato/packages/trunk/amarok/debian/changelog	2005-01-13 23:20:23 UTC (rev 396)
+++ people/dato/packages/trunk/amarok/debian/changelog	2005-01-13 23:38:28 UTC (rev 397)
@@ -46,12 +46,15 @@
 
     + Patched admin/configure.in.min to include AM_MAINTAINER_MODE. To make
       the .diff.gz stuff smaller, force automake-1.6 (which upstream uses) in
-      admin/detect-autoconf.sh.
+      admin/detect-autoconf.sh. [am_maintainer_mode.patch, automake-1.6.patch]
 
+    + Prevent admin/cvs.sh from creating .gmo files at "make dist" time, since
+      those can't shipped in the .diff.gz. [gmo_files_at_build_time.patch]
+
     + debian/amarok.1:
       - correct "hyphen vs. minus sign" usage.
 
- -- Adeodato Simó <asp16@alu.ua.es>  Fri, 14 Jan 2005 00:25:48 +0100
+ -- Adeodato Simó <asp16@alu.ua.es>  Fri, 14 Jan 2005 00:43:18 +0100
 
 amarok (1.1.1-1) unstable; urgency=low
 

Added: people/dato/packages/trunk/amarok/debian/patches/gmo_files_at_build_time.patch
===================================================================
--- people/dato/packages/trunk/amarok/debian/patches/gmo_files_at_build_time.patch	2005-01-13 23:20:23 UTC (rev 396)
+++ people/dato/packages/trunk/amarok/debian/patches/gmo_files_at_build_time.patch	2005-01-13 23:38:28 UTC (rev 397)
@@ -0,0 +1,11 @@
+--- a/admin/cvs.sh
++++ b/admin/cvs.sh
+@@ -196,7 +196,7 @@
+ ###
+ ### Then make messages
+ ###
+-if test -d po; then
++if test -d po && false; then
+  LIST=`find ./po -name "*.po"`
+  for i in $LIST; do
+   file2=`echo $i | sed -e "s#\.po#\.gmo#"`