Blame m4/po.m4

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