summaryrefslogtreecommitdiff
path: root/x11/gnome-panel/files/msgfmtstrip
diff options
context:
space:
mode:
Diffstat (limited to 'x11/gnome-panel/files/msgfmtstrip')
-rw-r--r--x11/gnome-panel/files/msgfmtstrip18
1 files changed, 0 insertions, 18 deletions
diff --git a/x11/gnome-panel/files/msgfmtstrip b/x11/gnome-panel/files/msgfmtstrip
deleted file mode 100644
index 950ff7540cb..00000000000
--- a/x11/gnome-panel/files/msgfmtstrip
+++ /dev/null
@@ -1,18 +0,0 @@
-# $Id: msgfmtstrip,v 1.1 2009/03/16 23:49:20 jmcneill Exp $
-# Simple awk script to strip out .po entries with "msgctxt" or "#~|", so the
-# resultant file can be handled by the msgfmt 0.14.4 in NetBSD 4.0
-{
-if (/^$/) { entry_end(); }
-else if ($1 == "msgctxt" || $2 == "msgctxt") { skip = 1; }
-else if ($1 == "#~|") { skip = 1; }
-else { entry = entry $0 "\n" }
-}
-
-END { entry_end(); }
-
-function entry_end() {
- if (!skip)
- print entry;
- entry = "";
- skip = 0;
-}