Blame m4/po.m4

rpm-build 0a0c83
# po.m4 serial 20 (gettext-0.18.2)
rpm-build 0a0c83
dnl Copyright (C) 1995-2013 Free Software Foundation, Inc.
rpm-build 0a0c83
dnl This file is free software; the Free Software Foundation
rpm-build 0a0c83
dnl gives unlimited permission to copy and/or distribute it,
rpm-build 0a0c83
dnl with or without modifications, as long as this notice is preserved.
rpm-build 0a0c83
dnl
rpm-build 0a0c83
dnl This file can can be used in projects which are not available under
rpm-build 0a0c83
dnl the GNU General Public License or the GNU Library General Public
rpm-build 0a0c83
dnl License but which still want to provide support for the GNU gettext
rpm-build 0a0c83
dnl functionality.
rpm-build 0a0c83
dnl Please note that the actual code of the GNU gettext library is covered
rpm-build 0a0c83
dnl by the GNU Library General Public License, and the rest of the GNU
rpm-build 0a0c83
dnl gettext package package is covered by the GNU General Public License.
rpm-build 0a0c83
dnl They are *not* in the public domain.
rpm-build 0a0c83
rpm-build 0a0c83
dnl Authors:
rpm-build 0a0c83
dnl   Ulrich Drepper <drepper@cygnus.com>, 1995-2000.
rpm-build 0a0c83
dnl   Bruno Haible <haible@clisp.cons.org>, 2000-2003.
rpm-build 0a0c83
rpm-build 0a0c83
AC_PREREQ([2.60])
rpm-build 0a0c83
rpm-build 0a0c83
dnl Checks for all prerequisites of the po subdirectory.
rpm-build 0a0c83
AC_DEFUN([AM_PO_SUBDIRS],
rpm-build 0a0c83
[
rpm-build 0a0c83
  AC_REQUIRE([AC_PROG_MAKE_SET])dnl
rpm-build 0a0c83
  AC_REQUIRE([AC_PROG_INSTALL])dnl
rpm-build 0a0c83
  AC_REQUIRE([AC_PROG_MKDIR_P])dnl
rpm-build 0a0c83
  AC_REQUIRE([AM_NLS])dnl
rpm-build 0a0c83
rpm-build 0a0c83
  dnl Release version of the gettext macros. This is used to ensure that
rpm-build 0a0c83
  dnl the gettext macros and po/Makefile.in.in are in sync.
rpm-build 0a0c83
  AC_SUBST([GETTEXT_MACRO_VERSION], [0.18])
rpm-build 0a0c83
rpm-build 0a0c83
  dnl Perform the following tests also if --disable-nls has been given,
rpm-build 0a0c83
  dnl because they are needed for "make dist" to work.
rpm-build 0a0c83
rpm-build 0a0c83
  dnl Search for GNU msgfmt in the PATH.
rpm-build 0a0c83
  dnl The first test excludes Solaris msgfmt and early GNU msgfmt versions.
rpm-build 0a0c83
  dnl The second test excludes FreeBSD msgfmt.
rpm-build 0a0c83
  AM_PATH_PROG_WITH_TEST(MSGFMT, msgfmt,
rpm-build 0a0c83
    [$ac_dir/$ac_word --statistics /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1 &&
rpm-build 0a0c83
     (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)],
rpm-build 0a0c83
    :)
rpm-build 0a0c83
  AC_PATH_PROG([GMSGFMT], [gmsgfmt], [$MSGFMT])
rpm-build 0a0c83
rpm-build 0a0c83
  dnl Test whether it is GNU msgfmt >= 0.15.
rpm-build 0a0c83
changequote(,)dnl
rpm-build 0a0c83
  case `$MSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in
rpm-build 0a0c83
    '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) MSGFMT_015=: ;;
rpm-build 0a0c83
    *) MSGFMT_015=$MSGFMT ;;
rpm-build 0a0c83
  esac
rpm-build 0a0c83
changequote([,])dnl
rpm-build 0a0c83
  AC_SUBST([MSGFMT_015])
rpm-build 0a0c83
changequote(,)dnl
rpm-build 0a0c83
  case `$GMSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in
rpm-build 0a0c83
    '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) GMSGFMT_015=: ;;
rpm-build 0a0c83
    *) GMSGFMT_015=$GMSGFMT ;;
rpm-build 0a0c83
  esac
rpm-build 0a0c83
changequote([,])dnl
rpm-build 0a0c83
  AC_SUBST([GMSGFMT_015])
rpm-build 0a0c83
rpm-build 0a0c83
  dnl Search for GNU xgettext 0.12 or newer in the PATH.
rpm-build 0a0c83
  dnl The first test excludes Solaris xgettext and early GNU xgettext versions.
rpm-build 0a0c83
  dnl The second test excludes FreeBSD xgettext.
rpm-build 0a0c83
  AM_PATH_PROG_WITH_TEST(XGETTEXT, xgettext,
rpm-build 0a0c83
    [$ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1 &&
rpm-build 0a0c83
     (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)],
rpm-build 0a0c83
    :)
rpm-build 0a0c83
  dnl Remove leftover from FreeBSD xgettext call.
rpm-build 0a0c83
  rm -f messages.po
rpm-build 0a0c83
rpm-build 0a0c83
  dnl Test whether it is GNU xgettext >= 0.15.
rpm-build 0a0c83
changequote(,)dnl
rpm-build 0a0c83
  case `$XGETTEXT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in
rpm-build 0a0c83
    '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) XGETTEXT_015=: ;;
rpm-build 0a0c83
    *) XGETTEXT_015=$XGETTEXT ;;
rpm-build 0a0c83
  esac
rpm-build 0a0c83
changequote([,])dnl
rpm-build 0a0c83
  AC_SUBST([XGETTEXT_015])
rpm-build 0a0c83
rpm-build 0a0c83
  dnl Search for GNU msgmerge 0.11 or newer in the PATH.
rpm-build 0a0c83
  AM_PATH_PROG_WITH_TEST(MSGMERGE, msgmerge,
rpm-build 0a0c83
    [$ac_dir/$ac_word --update -q /dev/null /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1], :)
rpm-build 0a0c83
rpm-build 0a0c83
  dnl Installation directories.
rpm-build 0a0c83
  dnl Autoconf >= 2.60 defines localedir. For older versions of autoconf, we
rpm-build 0a0c83
  dnl have to define it here, so that it can be used in po/Makefile.
rpm-build 0a0c83
  test -n "$localedir" || localedir='${datadir}/locale'
rpm-build 0a0c83
  AC_SUBST([localedir])
rpm-build 0a0c83
rpm-build 0a0c83
  dnl Support for AM_XGETTEXT_OPTION.
rpm-build 0a0c83
  test -n "${XGETTEXT_EXTRA_OPTIONS+set}" || XGETTEXT_EXTRA_OPTIONS=
rpm-build 0a0c83
  AC_SUBST([XGETTEXT_EXTRA_OPTIONS])
rpm-build 0a0c83
rpm-build 0a0c83
  AC_CONFIG_COMMANDS([po-directories], [[
rpm-build 0a0c83
    for ac_file in $CONFIG_FILES; do
rpm-build 0a0c83
      # Support "outfile[:infile[:infile...]]"
rpm-build 0a0c83
      case "$ac_file" in
rpm-build 0a0c83
        *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
rpm-build 0a0c83
      esac
rpm-build 0a0c83
      # PO directories have a Makefile.in generated from Makefile.in.in.
rpm-build 0a0c83
      case "$ac_file" in */Makefile.in)
rpm-build 0a0c83
        # Adjust a relative srcdir.
rpm-build 0a0c83
        ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'`
rpm-build 0a0c83
        ac_dir_suffix=/`echo "$ac_dir"|sed 's%^\./%%'`
rpm-build 0a0c83
        ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'`
rpm-build 0a0c83
        # In autoconf-2.13 it is called $ac_given_srcdir.
rpm-build 0a0c83
        # In autoconf-2.50 it is called $srcdir.
rpm-build 0a0c83
        test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir"
rpm-build 0a0c83
        case "$ac_given_srcdir" in
rpm-build 0a0c83
          .)  top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;;
rpm-build 0a0c83
          /*) top_srcdir="$ac_given_srcdir" ;;
rpm-build 0a0c83
          *)  top_srcdir="$ac_dots$ac_given_srcdir" ;;
rpm-build 0a0c83
        esac
rpm-build 0a0c83
        # Treat a directory as a PO directory if and only if it has a
rpm-build 0a0c83
        # POTFILES.in file. This allows packages to have multiple PO
rpm-build 0a0c83
        # directories under different names or in different locations.
rpm-build 0a0c83
        if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then
rpm-build 0a0c83
          rm -f "$ac_dir/POTFILES"
rpm-build 0a0c83
          test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES"
rpm-build 0a0c83
          gt_tab=`printf '\t'`
rpm-build 0a0c83
          cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ${gt_tab}]*\$/d" -e "s,.*,     $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES"
rpm-build 0a0c83
          POMAKEFILEDEPS="POTFILES.in"
rpm-build 0a0c83
          # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend
rpm-build 0a0c83
          # on $ac_dir but don't depend on user-specified configuration
rpm-build 0a0c83
          # parameters.
rpm-build 0a0c83
          if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then
rpm-build 0a0c83
            # The LINGUAS file contains the set of available languages.
rpm-build 0a0c83
            if test -n "$OBSOLETE_ALL_LINGUAS"; then
rpm-build 0a0c83
              test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete"
rpm-build 0a0c83
            fi
rpm-build 0a0c83
            ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"`
rpm-build 0a0c83
            # Hide the ALL_LINGUAS assignment from automake < 1.5.
rpm-build 0a0c83
            eval 'ALL_LINGUAS''=$ALL_LINGUAS_'
rpm-build 0a0c83
            POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS"
rpm-build 0a0c83
          else
rpm-build 0a0c83
            # The set of available languages was given in configure.in.
rpm-build 0a0c83
            # Hide the ALL_LINGUAS assignment from automake < 1.5.
rpm-build 0a0c83
            eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS'
rpm-build 0a0c83
          fi
rpm-build 0a0c83
          # Compute POFILES
rpm-build 0a0c83
          # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po)
rpm-build 0a0c83
          # Compute UPDATEPOFILES
rpm-build 0a0c83
          # as      $(foreach lang, $(ALL_LINGUAS), $(lang).po-update)
rpm-build 0a0c83
          # Compute DUMMYPOFILES
rpm-build 0a0c83
          # as      $(foreach lang, $(ALL_LINGUAS), $(lang).nop)
rpm-build 0a0c83
          # Compute GMOFILES
rpm-build 0a0c83
          # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo)
rpm-build 0a0c83
          case "$ac_given_srcdir" in
rpm-build 0a0c83
            .) srcdirpre= ;;
rpm-build 0a0c83
            *) srcdirpre='$(srcdir)/' ;;
rpm-build 0a0c83
          esac
rpm-build 0a0c83
          POFILES=
rpm-build 0a0c83
          UPDATEPOFILES=
rpm-build 0a0c83
          DUMMYPOFILES=
rpm-build 0a0c83
          GMOFILES=
rpm-build 0a0c83
          for lang in $ALL_LINGUAS; do
rpm-build 0a0c83
            POFILES="$POFILES $srcdirpre$lang.po"
rpm-build 0a0c83
            UPDATEPOFILES="$UPDATEPOFILES $lang.po-update"
rpm-build 0a0c83
            DUMMYPOFILES="$DUMMYPOFILES $lang.nop"
rpm-build 0a0c83
            GMOFILES="$GMOFILES $srcdirpre$lang.gmo"
rpm-build 0a0c83
          done
rpm-build 0a0c83
          # CATALOGS depends on both $ac_dir and the user's LINGUAS
rpm-build 0a0c83
          # environment variable.
rpm-build 0a0c83
          INST_LINGUAS=
rpm-build 0a0c83
          if test -n "$ALL_LINGUAS"; then
rpm-build 0a0c83
            for presentlang in $ALL_LINGUAS; do
rpm-build 0a0c83
              useit=no
rpm-build 0a0c83
              if test "%UNSET%" != "$LINGUAS"; then
rpm-build 0a0c83
                desiredlanguages="$LINGUAS"
rpm-build 0a0c83
              else
rpm-build 0a0c83
                desiredlanguages="$ALL_LINGUAS"
rpm-build 0a0c83
              fi
rpm-build 0a0c83
              for desiredlang in $desiredlanguages; do
rpm-build 0a0c83
                # Use the presentlang catalog if desiredlang is
rpm-build 0a0c83
                #   a. equal to presentlang, or
rpm-build 0a0c83
                #   b. a variant of presentlang (because in this case,
rpm-build 0a0c83
                #      presentlang can be used as a fallback for messages
rpm-build 0a0c83
                #      which are not translated in the desiredlang catalog).
rpm-build 0a0c83
                case "$desiredlang" in
rpm-build 0a0c83
                  "$presentlang"*) useit=yes;;
rpm-build 0a0c83
                esac
rpm-build 0a0c83
              done
rpm-build 0a0c83
              if test $useit = yes; then
rpm-build 0a0c83
                INST_LINGUAS="$INST_LINGUAS $presentlang"
rpm-build 0a0c83
              fi
rpm-build 0a0c83
            done
rpm-build 0a0c83
          fi
rpm-build 0a0c83
          CATALOGS=
rpm-build 0a0c83
          if test -n "$INST_LINGUAS"; then
rpm-build 0a0c83
            for lang in $INST_LINGUAS; do
rpm-build 0a0c83
              CATALOGS="$CATALOGS $lang.gmo"
rpm-build 0a0c83
            done
rpm-build 0a0c83
          fi
rpm-build 0a0c83
          test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile"
rpm-build 0a0c83
          sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile"
rpm-build 0a0c83
          for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do
rpm-build 0a0c83
            if test -f "$f"; then
rpm-build 0a0c83
              case "$f" in
rpm-build 0a0c83
                *.orig | *.bak | *~) ;;
rpm-build 0a0c83
                *) cat "$f" >> "$ac_dir/Makefile" ;;
rpm-build 0a0c83
              esac
rpm-build 0a0c83
            fi
rpm-build 0a0c83
          done
rpm-build 0a0c83
        fi
rpm-build 0a0c83
        ;;
rpm-build 0a0c83
      esac
rpm-build 0a0c83
    done]],
rpm-build 0a0c83
   [# Capture the value of obsolete ALL_LINGUAS because we need it to compute
rpm-build 0a0c83
    # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it
rpm-build 0a0c83
    # from automake < 1.5.
rpm-build 0a0c83
    eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"'
rpm-build 0a0c83
    # Capture the value of LINGUAS because we need it to compute CATALOGS.
rpm-build 0a0c83
    LINGUAS="${LINGUAS-%UNSET%}"
rpm-build 0a0c83
   ])
rpm-build 0a0c83
])
rpm-build 0a0c83
rpm-build 0a0c83
dnl Postprocesses a Makefile in a directory containing PO files.
rpm-build 0a0c83
AC_DEFUN([AM_POSTPROCESS_PO_MAKEFILE],
rpm-build 0a0c83
[
rpm-build 0a0c83
  # When this code is run, in config.status, two variables have already been
rpm-build 0a0c83
  # set:
rpm-build 0a0c83
  # - OBSOLETE_ALL_LINGUAS is the value of LINGUAS set in configure.in,
rpm-build 0a0c83
  # - LINGUAS is the value of the environment variable LINGUAS at configure
rpm-build 0a0c83
  #   time.
rpm-build 0a0c83
rpm-build 0a0c83
changequote(,)dnl
rpm-build 0a0c83
  # Adjust a relative srcdir.
rpm-build 0a0c83
  ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'`
rpm-build 0a0c83
  ac_dir_suffix=/`echo "$ac_dir"|sed 's%^\./%%'`
rpm-build 0a0c83
  ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'`
rpm-build 0a0c83
  # In autoconf-2.13 it is called $ac_given_srcdir.
rpm-build 0a0c83
  # In autoconf-2.50 it is called $srcdir.
rpm-build 0a0c83
  test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir"
rpm-build 0a0c83
  case "$ac_given_srcdir" in
rpm-build 0a0c83
    .)  top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;;
rpm-build 0a0c83
    /*) top_srcdir="$ac_given_srcdir" ;;
rpm-build 0a0c83
    *)  top_srcdir="$ac_dots$ac_given_srcdir" ;;
rpm-build 0a0c83
  esac
rpm-build 0a0c83
rpm-build 0a0c83
  # Find a way to echo strings without interpreting backslash.
rpm-build 0a0c83
  if test "X`(echo '\t') 2>/dev/null`" = 'X\t'; then
rpm-build 0a0c83
    gt_echo='echo'
rpm-build 0a0c83
  else
rpm-build 0a0c83
    if test "X`(printf '%s\n' '\t') 2>/dev/null`" = 'X\t'; then
rpm-build 0a0c83
      gt_echo='printf %s\n'
rpm-build 0a0c83
    else
rpm-build 0a0c83
      echo_func () {
rpm-build 0a0c83
        cat <
rpm-build 0a0c83
$*
rpm-build 0a0c83
EOT
rpm-build 0a0c83
      }
rpm-build 0a0c83
      gt_echo='echo_func'
rpm-build 0a0c83
    fi
rpm-build 0a0c83
  fi
rpm-build 0a0c83
rpm-build 0a0c83
  # A sed script that extracts the value of VARIABLE from a Makefile.
rpm-build 0a0c83
  tab=`printf '\t'`
rpm-build 0a0c83
  sed_x_variable='
rpm-build 0a0c83
# Test if the hold space is empty.
rpm-build 0a0c83
x
rpm-build 0a0c83
s/P/P/
rpm-build 0a0c83
x
rpm-build 0a0c83
ta
rpm-build 0a0c83
# Yes it was empty. Look if we have the expected variable definition.
rpm-build 0a0c83
/^['"${tab}"' ]*VARIABLE['"${tab}"' ]*=/{
rpm-build 0a0c83
  # Seen the first line of the variable definition.
rpm-build 0a0c83
  s/^['"${tab}"' ]*VARIABLE['"${tab}"' ]*=//
rpm-build 0a0c83
  ba
rpm-build 0a0c83
}
rpm-build 0a0c83
bd
rpm-build 0a0c83
:a
rpm-build 0a0c83
# Here we are processing a line from the variable definition.
rpm-build 0a0c83
# Remove comment, more precisely replace it with a space.
rpm-build 0a0c83
s/#.*$/ /
rpm-build 0a0c83
# See if the line ends in a backslash.
rpm-build 0a0c83
tb
rpm-build 0a0c83
:b
rpm-build 0a0c83
s/\\$//
rpm-build 0a0c83
# Print the line, without the trailing backslash.
rpm-build 0a0c83
p
rpm-build 0a0c83
tc
rpm-build 0a0c83
# There was no trailing backslash. The end of the variable definition is
rpm-build 0a0c83
# reached. Clear the hold space.
rpm-build 0a0c83
s/^.*$//
rpm-build 0a0c83
x
rpm-build 0a0c83
bd
rpm-build 0a0c83
:c
rpm-build 0a0c83
# A trailing backslash means that the variable definition continues in the
rpm-build 0a0c83
# next line. Put a nonempty string into the hold space to indicate this.
rpm-build 0a0c83
s/^.*$/P/
rpm-build 0a0c83
x
rpm-build 0a0c83
:d
rpm-build 0a0c83
'
rpm-build 0a0c83
changequote([,])dnl
rpm-build 0a0c83
rpm-build 0a0c83
  # Set POTFILES to the value of the Makefile variable POTFILES.
rpm-build 0a0c83
  sed_x_POTFILES=`$gt_echo "$sed_x_variable" | sed -e '/^ *#/d' -e 's/VARIABLE/POTFILES/g'`
rpm-build 0a0c83
  POTFILES=`sed -n -e "$sed_x_POTFILES" < "$ac_file"`
rpm-build 0a0c83
  # Compute POTFILES_DEPS as
rpm-build 0a0c83
  #   $(foreach file, $(POTFILES), $(top_srcdir)/$(file))
rpm-build 0a0c83
  POTFILES_DEPS=
rpm-build 0a0c83
  for file in $POTFILES; do
rpm-build 0a0c83
    POTFILES_DEPS="$POTFILES_DEPS "'$(top_srcdir)/'"$file"
rpm-build 0a0c83
  done
rpm-build 0a0c83
  POMAKEFILEDEPS=""
rpm-build 0a0c83
rpm-build 0a0c83
  if test -n "$OBSOLETE_ALL_LINGUAS"; then
rpm-build 0a0c83
    test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete"
rpm-build 0a0c83
  fi
rpm-build 0a0c83
  if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then
rpm-build 0a0c83
    # The LINGUAS file contains the set of available languages.
rpm-build 0a0c83
    ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"`
rpm-build 0a0c83
    POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS"
rpm-build 0a0c83
  else
rpm-build 0a0c83
    # Set ALL_LINGUAS to the value of the Makefile variable LINGUAS.
rpm-build 0a0c83
    sed_x_LINGUAS=`$gt_echo "$sed_x_variable" | sed -e '/^ *#/d' -e 's/VARIABLE/LINGUAS/g'`
rpm-build 0a0c83
    ALL_LINGUAS_=`sed -n -e "$sed_x_LINGUAS" < "$ac_file"`
rpm-build 0a0c83
  fi
rpm-build 0a0c83
  # Hide the ALL_LINGUAS assignment from automake < 1.5.
rpm-build 0a0c83
  eval 'ALL_LINGUAS''=$ALL_LINGUAS_'
rpm-build 0a0c83
  # Compute POFILES
rpm-build 0a0c83
  # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po)
rpm-build 0a0c83
  # Compute UPDATEPOFILES
rpm-build 0a0c83
  # as      $(foreach lang, $(ALL_LINGUAS), $(lang).po-update)
rpm-build 0a0c83
  # Compute DUMMYPOFILES
rpm-build 0a0c83
  # as      $(foreach lang, $(ALL_LINGUAS), $(lang).nop)
rpm-build 0a0c83
  # Compute GMOFILES
rpm-build 0a0c83
  # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo)
rpm-build 0a0c83
  # Compute PROPERTIESFILES
rpm-build 0a0c83
  # as      $(foreach lang, $(ALL_LINGUAS), $(top_srcdir)/$(DOMAIN)_$(lang).properties)
rpm-build 0a0c83
  # Compute CLASSFILES
rpm-build 0a0c83
  # as      $(foreach lang, $(ALL_LINGUAS), $(top_srcdir)/$(DOMAIN)_$(lang).class)
rpm-build 0a0c83
  # Compute QMFILES
rpm-build 0a0c83
  # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).qm)
rpm-build 0a0c83
  # Compute MSGFILES
rpm-build 0a0c83
  # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(frob $(lang)).msg)
rpm-build 0a0c83
  # Compute RESOURCESDLLFILES
rpm-build 0a0c83
  # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(frob $(lang))/$(DOMAIN).resources.dll)
rpm-build 0a0c83
  case "$ac_given_srcdir" in
rpm-build 0a0c83
    .) srcdirpre= ;;
rpm-build 0a0c83
    *) srcdirpre='$(srcdir)/' ;;
rpm-build 0a0c83
  esac
rpm-build 0a0c83
  POFILES=
rpm-build 0a0c83
  UPDATEPOFILES=
rpm-build 0a0c83
  DUMMYPOFILES=
rpm-build 0a0c83
  GMOFILES=
rpm-build 0a0c83
  PROPERTIESFILES=
rpm-build 0a0c83
  CLASSFILES=
rpm-build 0a0c83
  QMFILES=
rpm-build 0a0c83
  MSGFILES=
rpm-build 0a0c83
  RESOURCESDLLFILES=
rpm-build 0a0c83
  for lang in $ALL_LINGUAS; do
rpm-build 0a0c83
    POFILES="$POFILES $srcdirpre$lang.po"
rpm-build 0a0c83
    UPDATEPOFILES="$UPDATEPOFILES $lang.po-update"
rpm-build 0a0c83
    DUMMYPOFILES="$DUMMYPOFILES $lang.nop"
rpm-build 0a0c83
    GMOFILES="$GMOFILES $srcdirpre$lang.gmo"
rpm-build 0a0c83
    PROPERTIESFILES="$PROPERTIESFILES \$(top_srcdir)/\$(DOMAIN)_$lang.properties"
rpm-build 0a0c83
    CLASSFILES="$CLASSFILES \$(top_srcdir)/\$(DOMAIN)_$lang.class"
rpm-build 0a0c83
    QMFILES="$QMFILES $srcdirpre$lang.qm"
rpm-build 0a0c83
    frobbedlang=`echo $lang | sed -e 's/\..*$//' -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'`
rpm-build 0a0c83
    MSGFILES="$MSGFILES $srcdirpre$frobbedlang.msg"
rpm-build 0a0c83
    frobbedlang=`echo $lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$/-Latn/' -e 's/@cyrillic$/-Cyrl/' -e 's/^sr-SP$/sr-SP-Latn/' -e 's/^uz-UZ$/uz-UZ-Latn/'`
rpm-build 0a0c83
    RESOURCESDLLFILES="$RESOURCESDLLFILES $srcdirpre$frobbedlang/\$(DOMAIN).resources.dll"
rpm-build 0a0c83
  done
rpm-build 0a0c83
  # CATALOGS depends on both $ac_dir and the user's LINGUAS
rpm-build 0a0c83
  # environment variable.
rpm-build 0a0c83
  INST_LINGUAS=
rpm-build 0a0c83
  if test -n "$ALL_LINGUAS"; then
rpm-build 0a0c83
    for presentlang in $ALL_LINGUAS; do
rpm-build 0a0c83
      useit=no
rpm-build 0a0c83
      if test "%UNSET%" != "$LINGUAS"; then
rpm-build 0a0c83
        desiredlanguages="$LINGUAS"
rpm-build 0a0c83
      else
rpm-build 0a0c83
        desiredlanguages="$ALL_LINGUAS"
rpm-build 0a0c83
      fi
rpm-build 0a0c83
      for desiredlang in $desiredlanguages; do
rpm-build 0a0c83
        # Use the presentlang catalog if desiredlang is
rpm-build 0a0c83
        #   a. equal to presentlang, or
rpm-build 0a0c83
        #   b. a variant of presentlang (because in this case,
rpm-build 0a0c83
        #      presentlang can be used as a fallback for messages
rpm-build 0a0c83
        #      which are not translated in the desiredlang catalog).
rpm-build 0a0c83
        case "$desiredlang" in
rpm-build 0a0c83
          "$presentlang"*) useit=yes;;
rpm-build 0a0c83
        esac
rpm-build 0a0c83
      done
rpm-build 0a0c83
      if test $useit = yes; then
rpm-build 0a0c83
        INST_LINGUAS="$INST_LINGUAS $presentlang"
rpm-build 0a0c83
      fi
rpm-build 0a0c83
    done
rpm-build 0a0c83
  fi
rpm-build 0a0c83
  CATALOGS=
rpm-build 0a0c83
  JAVACATALOGS=
rpm-build 0a0c83
  QTCATALOGS=
rpm-build 0a0c83
  TCLCATALOGS=
rpm-build 0a0c83
  CSHARPCATALOGS=
rpm-build 0a0c83
  if test -n "$INST_LINGUAS"; then
rpm-build 0a0c83
    for lang in $INST_LINGUAS; do
rpm-build 0a0c83
      CATALOGS="$CATALOGS $lang.gmo"
rpm-build 0a0c83
      JAVACATALOGS="$JAVACATALOGS \$(DOMAIN)_$lang.properties"
rpm-build 0a0c83
      QTCATALOGS="$QTCATALOGS $lang.qm"
rpm-build 0a0c83
      frobbedlang=`echo $lang | sed -e 's/\..*$//' -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'`
rpm-build 0a0c83
      TCLCATALOGS="$TCLCATALOGS $frobbedlang.msg"
rpm-build 0a0c83
      frobbedlang=`echo $lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$/-Latn/' -e 's/@cyrillic$/-Cyrl/' -e 's/^sr-SP$/sr-SP-Latn/' -e 's/^uz-UZ$/uz-UZ-Latn/'`
rpm-build 0a0c83
      CSHARPCATALOGS="$CSHARPCATALOGS $frobbedlang/\$(DOMAIN).resources.dll"
rpm-build 0a0c83
    done
rpm-build 0a0c83
  fi
rpm-build 0a0c83
rpm-build 0a0c83
  sed -e "s|@POTFILES_DEPS@|$POTFILES_DEPS|g" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@PROPERTIESFILES@|$PROPERTIESFILES|g" -e "s|@CLASSFILES@|$CLASSFILES|g" -e "s|@QMFILES@|$QMFILES|g" -e "s|@MSGFILES@|$MSGFILES|g" -e "s|@RESOURCESDLLFILES@|$RESOURCESDLLFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@JAVACATALOGS@|$JAVACATALOGS|g" -e "s|@QTCATALOGS@|$QTCATALOGS|g" -e "s|@TCLCATALOGS@|$TCLCATALOGS|g" -e "s|@CSHARPCATALOGS@|$CSHARPCATALOGS|g" -e 's,^#distdir:,distdir:,' < "$ac_file" > "$ac_file.tmp"
rpm-build 0a0c83
  tab=`printf '\t'`
rpm-build 0a0c83
  if grep -l '@TCLCATALOGS@' "$ac_file" > /dev/null; then
rpm-build 0a0c83
    # Add dependencies that cannot be formulated as a simple suffix rule.
rpm-build 0a0c83
    for lang in $ALL_LINGUAS; do
rpm-build 0a0c83
      frobbedlang=`echo $lang | sed -e 's/\..*$//' -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'`
rpm-build 0a0c83
      cat >> "$ac_file.tmp" <
rpm-build 0a0c83
$frobbedlang.msg: $lang.po
rpm-build 0a0c83
${tab}@echo "\$(MSGFMT) -c --tcl -d \$(srcdir) -l $lang $srcdirpre$lang.po"; \
rpm-build 0a0c83
${tab}\$(MSGFMT) -c --tcl -d "\$(srcdir)" -l $lang $srcdirpre$lang.po || { rm -f "\$(srcdir)/$frobbedlang.msg"; exit 1; }
rpm-build 0a0c83
EOF
rpm-build 0a0c83
    done
rpm-build 0a0c83
  fi
rpm-build 0a0c83
  if grep -l '@CSHARPCATALOGS@' "$ac_file" > /dev/null; then
rpm-build 0a0c83
    # Add dependencies that cannot be formulated as a simple suffix rule.
rpm-build 0a0c83
    for lang in $ALL_LINGUAS; do
rpm-build 0a0c83
      frobbedlang=`echo $lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$/-Latn/' -e 's/@cyrillic$/-Cyrl/' -e 's/^sr-SP$/sr-SP-Latn/' -e 's/^uz-UZ$/uz-UZ-Latn/'`
rpm-build 0a0c83
      cat >> "$ac_file.tmp" <
rpm-build 0a0c83
$frobbedlang/\$(DOMAIN).resources.dll: $lang.po
rpm-build 0a0c83
${tab}@echo "\$(MSGFMT) -c --csharp -d \$(srcdir) -l $lang $srcdirpre$lang.po -r \$(DOMAIN)"; \
rpm-build 0a0c83
${tab}\$(MSGFMT) -c --csharp -d "\$(srcdir)" -l $lang $srcdirpre$lang.po -r "\$(DOMAIN)" || { rm -f "\$(srcdir)/$frobbedlang.msg"; exit 1; }
rpm-build 0a0c83
EOF
rpm-build 0a0c83
    done
rpm-build 0a0c83
  fi
rpm-build 0a0c83
  if test -n "$POMAKEFILEDEPS"; then
rpm-build 0a0c83
    cat >> "$ac_file.tmp" <
rpm-build 0a0c83
Makefile: $POMAKEFILEDEPS
rpm-build 0a0c83
EOF
rpm-build 0a0c83
  fi
rpm-build 0a0c83
  mv "$ac_file.tmp" "$ac_file"
rpm-build 0a0c83
])
rpm-build 0a0c83
rpm-build 0a0c83
dnl Initializes the accumulator used by AM_XGETTEXT_OPTION.
rpm-build 0a0c83
AC_DEFUN([AM_XGETTEXT_OPTION_INIT],
rpm-build 0a0c83
[
rpm-build 0a0c83
  XGETTEXT_EXTRA_OPTIONS=
rpm-build 0a0c83
])
rpm-build 0a0c83
rpm-build 0a0c83
dnl Registers an option to be passed to xgettext in the po subdirectory.
rpm-build 0a0c83
AC_DEFUN([AM_XGETTEXT_OPTION],
rpm-build 0a0c83
[
rpm-build 0a0c83
  AC_REQUIRE([AM_XGETTEXT_OPTION_INIT])
rpm-build 0a0c83
  XGETTEXT_EXTRA_OPTIONS="$XGETTEXT_EXTRA_OPTIONS $1"
rpm-build 0a0c83
])