annotate po/remove-potcdate.sin @ 4793:7f318fa97ea3

Only gtk.h should be included, as per -DGTK_DISABLE_SINGLE_INCLUDES (GTK+ 3 compatibility project).
author Tony Vroon <chainsaw@gentoo.org>
date Sat, 04 Oct 2008 23:41:34 +0100
parents cb178e5ad177
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
1 # Sed script that remove the POT-Creation-Date line in the header entry
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
2 # from a POT file.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
3 #
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
4 # The distinction between the first and the following occurrences of the
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
5 # pattern is achieved by looking at the hold space.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
6 /^"POT-Creation-Date: .*"$/{
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
7 x
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
8 # Test if the hold space is empty.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
9 s/P/P/
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
10 ta
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
11 # Yes it was empty. First occurrence. Remove the line.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
12 g
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
13 d
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
14 bb
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
15 :a
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
16 # The hold space was nonempty. Following occurrences. Do nothing.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
17 x
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
18 :b
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
19 }