]> git.pld-linux.org Git - packages/rpm-build-macros.git/blobdiff - dokuwiki-find-lang.sh
- whitespace cleanup
[packages/rpm-build-macros.git] / dokuwiki-find-lang.sh
old mode 100644 (file)
new mode 100755 (executable)
index 86f46fa..c370fd9
@@ -1,10 +1,19 @@
 #!/bin/sh
 PROG=${0##*/}
+if [ $# = 2 ]; then
+       # for using same syntax as rpm own find-lang
+       RPM_BUILD_ROOT=$1
+       shift
+fi
 dir=$RPM_BUILD_ROOT/usr/share/dokuwiki
 langfile=$1
+tmp=$(mktemp) || exit 1
+rc=0
+
+find $dir -type d -name lang > $tmp
 
 echo '%defattr(644,root,root,755)' > $langfile
-find $dir -type d -name lang | while read dir; do
+while read dir; do
        echo "%dir ${dir#$RPM_BUILD_ROOT}" >> $langfile
        for dir in $dir/*; do
                lang=${dir##*/}
@@ -22,16 +31,32 @@ find $dir -type d -name lang | while read dir; do
                id-ni)
                        lang=id_NI
                ;;
+               ca-valencia)
+                       lang=ca@valencia
+               ;;
+               de-informal)
+                       lang=de
+               ;;
+               zh-cn)
+                       lang=zh_CN
+               ;;
                *-*)
-                       echo >&2 "Need mapping for $lang!"
-                       exit 1
+                       echo >&2 "ERROR: Need mapping for $lang!"
+                       rc=1
                ;;
                esac
-               echo "%lang($lang) ${dir#$RPM_BUILD_ROOT}" >> $langfile
+               if [ "$lang" = "en" ]; then
+                       echo "${dir#$RPM_BUILD_ROOT}" >> $langfile
+               else
+                       echo "%lang($lang) ${dir#$RPM_BUILD_ROOT}" >> $langfile
+               fi
        done
-done
+done < $tmp
 
-if [ "$(egrep -v '(^%defattr|^$)' $langfile | wc -l)" -le 0 ]; then
+if [ "$(grep -Ev '(^%defattr|^$)' $langfile | wc -l)" -le 0 ]; then
        echo >&2 "$PROG: Error: international files not found!"
-       exit 1
+       rc=1
 fi
+
+rm -f $tmp
+exit $rc
This page took 0.054411 seconds and 4 git commands to generate.