summaryrefslogtreecommitdiff
path: root/wikipedia/m4/as-linguas.m4
diff options
context:
space:
mode:
authorRory MacQueen <rorymacqueen@gmail.com>2013-07-19 16:47:09 -0700
committerPhilip Chimento <philip.chimento@gmail.com>2013-07-26 17:31:33 -0700
commit5852d75773d72d75995d07b3bc87f9e744b5f1b5 (patch)
treeb773ffc22679a67756505b34c9d004b79fe3e2ec /wikipedia/m4/as-linguas.m4
parentae9928b88ac2bcc82921e04e8cf4df5e18be174d (diff)
Moved wikipedia source files into sdk
Moved the wikipedia source files into the sdk repo since they will be eventually be shared by many apps [endlessm/eos-sdk#162]
Diffstat (limited to 'wikipedia/m4/as-linguas.m4')
-rw-r--r--wikipedia/m4/as-linguas.m426
1 files changed, 26 insertions, 0 deletions
diff --git a/wikipedia/m4/as-linguas.m4 b/wikipedia/m4/as-linguas.m4
new file mode 100644
index 0000000..8b4e07f
--- /dev/null
+++ b/wikipedia/m4/as-linguas.m4
@@ -0,0 +1,26 @@
+# Set ALL_LINGUAS based on the .po files present. Optional argument is the
+# name of the po directory. $podir/LINGUAS.ignore can be used to ignore a
+# subset of the po files.
+
+# Public domain, according to Emmanuele
+
+AC_DEFUN([AS_ALL_LINGUAS],
+[
+ AC_MSG_CHECKING([for linguas])
+ podir="m4_default([$1],[$srcdir/po])"
+ linguas=`cd $podir && ls *.po 2>/dev/null | awk 'BEGIN { FS="."; ORS=" " } { print $[]1 }'`
+ if test -f "$podir/LINGUAS.ignore"; then
+ ALL_LINGUAS="";
+ ignore_linguas=`sed -n -e 's/^\s\+\|\s\+$//g' -e '/^#/b' -e '/\S/!b' \
+ -e 's/\s\+/\n/g' -e p "$podir/LINGUAS.ignore"`;
+ for lang in $linguas; do
+ if ! echo "$ignore_linguas" | grep -q "^${lang}$"; then
+ ALL_LINGUAS="$ALL_LINGUAS $lang";
+ fi;
+ done;
+ else
+ ALL_LINGUAS="$linguas";
+ fi;
+ AC_SUBST([ALL_LINGUAS])
+ AC_MSG_RESULT($ALL_LINGUAS)
+])