refdes_renum: warn of possible number clash with non-conforming values
[geda-gaf/whiteaudio.git] / m4 / geda-desktop-i18n.m4
blob18f36a0cf131074ebc9ec5f88f52a597fa542baa
1 # geda-desktop-i18n.m4                                  -*-Autoconf-*-
2 # serial 1
4 dnl Carry out configuration tasks needed by desktop-i18n tool
5 dnl Copyright (C) 2009  Peter Brett <peter@peter-b.co.uk>
6 dnl
7 dnl This program is free software; you can redistribute it and/or modify
8 dnl it under the terms of the GNU General Public License as published by
9 dnl the Free Software Foundation; either version 2 of the License, or
10 dnl (at your option) any later version.
11 dnl
12 dnl This program is distributed in the hope that it will be useful,
13 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
14 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 dnl GNU General Public License for more details.
16 dnl
17 dnl You should have received a copy of the GNU General Public License
18 dnl along with this program; if not, write to the Free Software
19 dnl Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 AC_DEFUN([AX_DESKTOP_I18N],
23   AC_PREREQ([2.60])dnl
24   AC_REQUIRE([AM_NLS])dnl
25   AC_REQUIRE([AM_PO_SUBDIRS])dnl
26   dnl Complain if desktop-i18n is missing
27   AC_REQUIRE_AUX_FILE([desktop-i18n])
29   # We need to check that GNU gettext is available
30   AM_PATH_PROG_WITH_TEST([GETTEXT], [gettext],
31     [$ac_dir/$ac_word --version | grep GNU > /dev/null], :)
32   if test "x$GETTEXT" = x; then
33     AC_MSG_ERROR([The GNU gettext program could not be found. Please ensure that GNU
34 gettext is correctly installed, and rerun configure.])
35   fi
36   AC_SUBST([GETTEXT])
38   # How should desktop-i18n be run?
39   DESKTOP_I18N_SCRIPT="$am_aux_dir/desktop-i18n"
40   DESKTOP_I18N="\${SHELL} $DESKTOP_I18N_SCRIPT"
41   AC_SUBST([DESKTOP_I18N_SCRIPT])
42   AC_SUBST([DESKTOP_I18N])
44   # We have a private directory to temporarily install locale data
45   # into.
46   DESKTOP_I18N_LOCALE_DIR='$(top_builddir)/.desktop-i18n'
47   AC_SUBST([DESKTOP_I18N_LOCALE_DIR])
49   # Substitute our own evil, corrupted version of xgettext.
50   # Mwahahahaha!
51   XGETTEXT="$DESKTOP_I18N --extract --xgettext=$XGETTEXT --"
53   # Define some rules for substitution into Makefiles
54   DESKTOP_I18N_CREATE='$(DESKTOP_I18N) --create --gettext=$(GETTEXT) --domain=$(DOMAIN) \
55     --localedir=$(DESKTOP_I18N_LOCALE_DIR)/share/locale $(DESKTOP_I18N_LANGS)'
56   DESKTOP_I18N_LANGS_RULE='DESKTOP_I18N_LANGS = $(addprefix --lang=,$(shell cat $(DESKTOP_I18N_LOCALE_DIR)/$(DOMAIN).LINGUAS))'
57   DESKTOP_I18N_DESKTOP_RULE='%.desktop: %.desktop.in ; $(DESKTOP_I18N_CREATE) $< [$]@'
58   DESKTOP_I18N_XML_RULE='%.xml: %.xml.in ; $(DESKTOP_I18N_CREATE) $< [$]@'
60   AC_SUBST([DESKTOP_I18N_CREATE])
61   _IT_SUBST([DESKTOP_I18N_LANGS_RULE])
62   _IT_SUBST([DESKTOP_I18N_DESKTOP_RULE])
63   _IT_SUBST([DESKTOP_I18N_XML_RULE])
64 ])dnl AX_DESKTOP_I18N
66 # _IT_SUBST(VARIABLE)
67 # -------------------
68 # Abstract macro to do either _AM_SUBST_NOTMAKE or AC_SUBST
69 # Stolen from intltool.m4 (GPL v2)
70 AC_DEFUN([_IT_SUBST],
72 AC_SUBST([$1])
73 m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([$1])])
74 ])dnl _IT_SUBST