summaryrefslogtreecommitdiff
path: root/security/seahorse
diff options
context:
space:
mode:
authorwiz <wiz>2008-11-03 06:52:04 +0000
committerwiz <wiz>2008-11-03 06:52:04 +0000
commit41b58cbda0ea896f5dc00f54bbdcc720edec3ee3 (patch)
tree0e8b5e21a6a8ea192f974f1cd1c075189b7f1634 /security/seahorse
parent8fd00c0368f6261b68553ce887510f8693e004f2 (diff)
downloadpkgsrc-41b58cbda0ea896f5dc00f54bbdcc720edec3ee3.tar.gz
Add script for munging locale files.
Diffstat (limited to 'security/seahorse')
-rw-r--r--security/seahorse/files/msgfmtstrip18
1 files changed, 18 insertions, 0 deletions
diff --git a/security/seahorse/files/msgfmtstrip b/security/seahorse/files/msgfmtstrip
new file mode 100644
index 00000000000..6a79f7cff94
--- /dev/null
+++ b/security/seahorse/files/msgfmtstrip
@@ -0,0 +1,18 @@
+# $Id: msgfmtstrip,v 1.1 2008/11/03 06:52:04 wiz 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;
+}