Reformat. Add Emacs local variables
[yazpp-moved-to-github.git] / yazpp-config.in
index cd5946d..0b37a82 100644 (file)
@@ -30,44 +30,43 @@ EOF
 }
 
 if test $# -eq 0; then
-       echo_help=yes
+    echo_help=yes
 fi
 
 while test $# -gt 0; do
-  case "$1" in
-  -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
-  *) optarg= ;;
-  esac
-
-  case $1 in
-    --prefix=*)
-      prefix=$optarg
-      ;;
-    --prefix)
-      echo $prefix
-      exit 0
-      ;;
-    --version)
-      echo $VERSION
-      exit 0
-      ;;
-    --cflags)
-      echo_cflags=yes
-      ;;
-    --libs)
-      echo_libs=yes
-      ;;
-    --tabs)
-      echo_tabs=yes
-      ;;
-    --lalibs)
-      echo_lalibs=yes
-      ;;
-    -*)
-      echo_help=yes
-      ;;
-  esac
-  shift
+    case "$1" in
+       -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
+       *) optarg= ;;
+    esac
+    case $1 in
+       --prefix=*)
+       prefix=$optarg
+       ;;
+       --prefix)
+           echo $prefix
+           exit 0
+           ;;
+       --version)
+           echo $VERSION
+           exit 0
+           ;;
+       --cflags)
+           echo_cflags=yes
+           ;;
+       --libs)
+           echo_libs=yes
+           ;;
+       --tabs)
+           echo_tabs=yes
+           ;;
+       --lalibs)
+           echo_lalibs=yes
+           ;;
+       -*)
+           echo_help=yes
+           ;;
+    esac
+    shift
 done
 
 libs_short="-lyazpp -lzoompp"
@@ -81,7 +80,6 @@ if test "$echo_source" = "yes"; then
     YAZPPLALIB="${build_root}/src/libyazpp.la $yazlalibs"
     YAZPPINC="-I${src_root}/include $YAZPPINC"
 else
-
     if test "$prefix" = "/usr"; then
        YAZPPLIB="${libs_short} $yazlibs"
     else
@@ -94,14 +92,19 @@ else
 fi
 
 if test "$echo_help" = "yes"; then
-       usage 1 1>&2
+    usage 1 1>&2
 fi
 if test "$echo_cflags" = "yes"; then
-       echo $YAZPPINC
+    echo $YAZPPINC
 fi
 if test "$echo_libs" = "yes"; then
-       echo $YAZPPLIB
+    echo $YAZPPLIB
 fi
 if test "$echo_lalibs" = "yes"; then
-       echo $YAZPPLALIB
+    echo $YAZPPLALIB
 fi
+# Local Variables:
+# mode:shell-script
+# sh-indentation: 2
+# sh-basic-offset: 4
+# End: