mirror of https://github.com/GNOME/gimp.git
Please re-run autogen.sh after this update, and let me know if there are
2008-08-11 Sven Neumann <sven@gimp.org> Please re-run autogen.sh after this update, and let me know if there are any problems. * po-*/Makefile.in.in: updated to a version that does not require mkinstalldirs to be present. * autogen.sh: removed the call to glib-gettextize and call intltoolize without the --force command-line option. This change makes an end to the po/Makefile.in.in being overwritten. * HACKING: changed the documentation accordingly. svn path=/trunk/; revision=26500
This commit is contained in:
parent
8ee49109e3
commit
e816403306
14
ChangeLog
14
ChangeLog
|
@ -1,3 +1,17 @@
|
||||||
|
2008-08-11 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
|
Please re-run autogen.sh after this update, and let me know if
|
||||||
|
there are any problems.
|
||||||
|
|
||||||
|
* po-*/Makefile.in.in: updated to a version that does not require
|
||||||
|
mkinstalldirs to be present.
|
||||||
|
|
||||||
|
* autogen.sh: removed the call to glib-gettextize and call
|
||||||
|
intltoolize without the --force command-line option. This change
|
||||||
|
makes an end to the po/Makefile.in.in being overwritten.
|
||||||
|
|
||||||
|
* HACKING: changed the documentation accordingly.
|
||||||
|
|
||||||
2008-08-11 Sven Neumann <sven@gimp.org>
|
2008-08-11 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
* plug-ins/common/plugin-defs.pl: removed the LIBFOO hack from
|
* plug-ins/common/plugin-defs.pl: removed the LIBFOO hack from
|
||||||
|
|
2
HACKING
2
HACKING
|
@ -38,7 +38,7 @@ by running:
|
||||||
Basically this does the following for you:
|
Basically this does the following for you:
|
||||||
|
|
||||||
gimp/trunk$ aclocal-1.9; libtoolize; automake-1.9 -a;
|
gimp/trunk$ aclocal-1.9; libtoolize; automake-1.9 -a;
|
||||||
gimp/trunk$ autoconf; glib-gettextize; intltoolize
|
gimp/trunk$ autoconf; intltoolize --automake
|
||||||
|
|
||||||
The above commands create the "configure" script. Now you can run the
|
The above commands create the "configure" script. Now you can run the
|
||||||
configure script in gimp/trunk to create all the Makefiles.
|
configure script in gimp/trunk to create all the Makefiles.
|
||||||
|
|
19
autogen.sh
19
autogen.sh
|
@ -17,7 +17,6 @@ LIBTOOLIZE=${LIBTOOLIZE-libtoolize}
|
||||||
|
|
||||||
AUTOCONF_REQUIRED_VERSION=2.54
|
AUTOCONF_REQUIRED_VERSION=2.54
|
||||||
AUTOMAKE_REQUIRED_VERSION=1.9.6
|
AUTOMAKE_REQUIRED_VERSION=1.9.6
|
||||||
GLIB_REQUIRED_VERSION=2.16.0
|
|
||||||
INTLTOOL_REQUIRED_VERSION=0.35.5
|
INTLTOOL_REQUIRED_VERSION=0.35.5
|
||||||
LIBTOOL_REQUIRED_VERSION=1.5
|
LIBTOOL_REQUIRED_VERSION=1.5
|
||||||
|
|
||||||
|
@ -171,21 +170,6 @@ if test x$AUTOMAKE != x; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
echo -n "checking for glib-gettextize ... "
|
|
||||||
if (glib-gettextize --version) < /dev/null > /dev/null 2>&1; then
|
|
||||||
VER=`glib-gettextize --version \
|
|
||||||
| grep glib-gettextize | sed "s/.* \([0-9.]*\)/\1/"`
|
|
||||||
check_version $VER $GLIB_REQUIRED_VERSION
|
|
||||||
else
|
|
||||||
echo
|
|
||||||
echo " You must have glib-gettextize installed to compile $PROJECT."
|
|
||||||
echo " glib-gettextize is part of glib-2.0, so you should already"
|
|
||||||
echo " have it. Make sure it is in your PATH."
|
|
||||||
echo
|
|
||||||
DIE=1
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
echo -n "checking for intltool >= $INTLTOOL_REQUIRED_VERSION ... "
|
echo -n "checking for intltool >= $INTLTOOL_REQUIRED_VERSION ... "
|
||||||
if (intltoolize --version) < /dev/null > /dev/null 2>&1; then
|
if (intltoolize --version) < /dev/null > /dev/null 2>&1; then
|
||||||
VER=`intltoolize --version \
|
VER=`intltoolize --version \
|
||||||
|
@ -292,8 +276,7 @@ fi
|
||||||
$AUTOMAKE --add-missing || exit $?
|
$AUTOMAKE --add-missing || exit $?
|
||||||
$AUTOCONF || exit $?
|
$AUTOCONF || exit $?
|
||||||
|
|
||||||
glib-gettextize --force || exit $?
|
intltoolize --automake || exit $?
|
||||||
intltoolize --force --automake || exit $?
|
|
||||||
|
|
||||||
|
|
||||||
cd $ORIGDIR
|
cd $ORIGDIR
|
||||||
|
|
|
@ -11,6 +11,11 @@
|
||||||
#
|
#
|
||||||
# - Modified by jacob berkman <jacob@ximian.com> to install
|
# - Modified by jacob berkman <jacob@ximian.com> to install
|
||||||
# Makefile.in.in and po2tbl.sed.in for use with glib-gettextize
|
# Makefile.in.in and po2tbl.sed.in for use with glib-gettextize
|
||||||
|
#
|
||||||
|
# - Modified by Rodney Dawes <dobey@novell.com> for use with intltool
|
||||||
|
#
|
||||||
|
# We have the following line for use by intltoolize:
|
||||||
|
# INTLTOOL_MAKEFILE
|
||||||
|
|
||||||
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@-libgimp
|
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@-libgimp
|
||||||
XGETTEXT_KEYWORDS=--keyword=_ --keyword=N_ --keyword=Q_:1g --keyword=C_:1c,2
|
XGETTEXT_KEYWORDS=--keyword=_ --keyword=N_ --keyword=Q_:1g --keyword=C_:1c,2
|
||||||
|
@ -19,11 +24,10 @@ PACKAGE = @PACKAGE@
|
||||||
VERSION = @VERSION@
|
VERSION = @VERSION@
|
||||||
|
|
||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
@SET_MAKE@
|
|
||||||
|
|
||||||
srcdir = @srcdir@
|
srcdir = @srcdir@
|
||||||
top_srcdir = @top_srcdir@
|
top_srcdir = @top_srcdir@
|
||||||
top_builddir = ..
|
top_builddir = @top_builddir@
|
||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
|
|
||||||
prefix = @prefix@
|
prefix = @prefix@
|
||||||
|
@ -31,19 +35,17 @@ exec_prefix = @exec_prefix@
|
||||||
datadir = @datadir@
|
datadir = @datadir@
|
||||||
datarootdir = @datarootdir@
|
datarootdir = @datarootdir@
|
||||||
libdir = @libdir@
|
libdir = @libdir@
|
||||||
localedir = $(libdir)/locale
|
DATADIRNAME = @DATADIRNAME@
|
||||||
gnulocaledir = $(datadir)/locale
|
itlocaledir = $(prefix)/$(DATADIRNAME)/locale
|
||||||
gettextsrcdir = $(datadir)/glib-2.0/gettext/po
|
|
||||||
subdir = po
|
subdir = po
|
||||||
install_sh = @install_sh@
|
install_sh = @install_sh@
|
||||||
mkdir_p = @mkdir_p@
|
# Automake >= 1.8 provides @mkdir_p@.
|
||||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
# Until it can be supposed, use the safe fallback:
|
||||||
|
mkdir_p = $(install_sh) -d
|
||||||
|
|
||||||
INSTALL = @INSTALL@
|
INSTALL = @INSTALL@
|
||||||
INSTALL_DATA = @INSTALL_DATA@
|
INSTALL_DATA = @INSTALL_DATA@
|
||||||
|
|
||||||
CC = @CC@
|
|
||||||
GENCAT = @GENCAT@
|
|
||||||
GMSGFMT = @GMSGFMT@
|
GMSGFMT = @GMSGFMT@
|
||||||
MSGFMT = @MSGFMT@
|
MSGFMT = @MSGFMT@
|
||||||
XGETTEXT = @XGETTEXT@
|
XGETTEXT = @XGETTEXT@
|
||||||
|
@ -52,35 +54,30 @@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
|
||||||
MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist
|
MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist
|
||||||
GENPOT = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot
|
GENPOT = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot
|
||||||
|
|
||||||
DEFS = @DEFS@
|
ALL_LINGUAS = @ALL_LINGUAS@
|
||||||
CFLAGS = @CFLAGS@
|
|
||||||
CPPFLAGS = @CPPFLAGS@
|
|
||||||
|
|
||||||
INCLUDES = -I.. -I$(top_srcdir)/intl
|
PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; fi)
|
||||||
|
|
||||||
COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
|
USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep ^$$lang$$ $(srcdir)/LINGUAS`" -o -n "`echo $$ALINGUAS|grep ' ?$$lang ?'`"; then printf "$$lang "; fi; done; fi)
|
||||||
|
|
||||||
SOURCES =
|
USE_LINGUAS=$(shell if test -n "$(USER_LINGUAS)"; then LLINGUAS="$(USER_LINGUAS)"; else if test -n "$(PO_LINGUAS)"; then LLINGUAS="$(PO_LINGUAS)"; else LLINGUAS="$(ALL_LINGUAS)"; fi; fi; for lang in $$LLINGUAS; do printf "$$lang "; done)
|
||||||
POFILES = @POFILES@
|
|
||||||
GMOFILES = @GMOFILES@
|
POFILES=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.po "; done)
|
||||||
DISTFILES = ChangeLog Makefile.in.in POTFILES.in \
|
|
||||||
$(POFILES) $(GMOFILES) $(SOURCES)
|
DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(POFILES)
|
||||||
|
EXTRA_DISTFILES = POTFILES.skip Makevars LINGUAS
|
||||||
|
|
||||||
POTFILES = \
|
POTFILES = \
|
||||||
|
# This comment gets stripped out
|
||||||
|
|
||||||
CATALOGS = @CATALOGS@
|
CATALOGS=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.gmo "; done)
|
||||||
CATOBJEXT = @CATOBJEXT@
|
|
||||||
INSTOBJEXT = @INSTOBJEXT@
|
|
||||||
|
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
.SUFFIXES: .c .o .po .pox .gmo .mo .msg .cat
|
.SUFFIXES: .po .pox .gmo .mo .msg .cat
|
||||||
|
|
||||||
.c.o:
|
|
||||||
$(COMPILE) $<
|
|
||||||
|
|
||||||
.po.pox:
|
.po.pox:
|
||||||
$(MAKE) $(GETTEXT_PACKAGE).pot
|
$(MAKE) $(GETTEXT_PACKAGE).pot
|
||||||
$(MSGMERGE) $< $(top_builddir)/po/$(GETTEXT_PACKAGE).pot -o $*pox
|
$(MSGMERGE) $< $(GETTEXT_PACKAGE).pot -o $*.pox
|
||||||
|
|
||||||
.po.mo:
|
.po.mo:
|
||||||
$(MSGFMT) -o $@ $<
|
$(MSGFMT) -o $@ $<
|
||||||
|
@ -91,7 +88,7 @@ INSTOBJEXT = @INSTOBJEXT@
|
||||||
|
|
||||||
.po.cat:
|
.po.cat:
|
||||||
sed -f ../intl/po2msg.sed < $< > $*.msg \
|
sed -f ../intl/po2msg.sed < $< > $*.msg \
|
||||||
&& rm -f $@ && $(GENCAT) $@ $*.msg
|
&& rm -f $@ && gencat $@ $*.msg
|
||||||
|
|
||||||
|
|
||||||
all: all-@USE_NLS@
|
all: all-@USE_NLS@
|
||||||
|
@ -102,115 +99,91 @@ all-no:
|
||||||
$(GETTEXT_PACKAGE).pot: $(POTFILES)
|
$(GETTEXT_PACKAGE).pot: $(POTFILES)
|
||||||
$(GENPOT)
|
$(GENPOT)
|
||||||
|
|
||||||
install: install-exec install-data
|
install: install-data
|
||||||
install-exec:
|
|
||||||
install-data: install-data-@USE_NLS@
|
install-data: install-data-@USE_NLS@
|
||||||
install-data-no: all
|
install-data-no: all
|
||||||
install-data-yes: all
|
install-data-yes: all
|
||||||
if test -n "$(MKINSTALLDIRS)"; then \
|
$(mkdir_p) $(DESTDIR)$(itlocaledir)
|
||||||
$(MKINSTALLDIRS) $(DESTDIR)$(datadir); \
|
linguas="$(USE_LINGUAS)"; \
|
||||||
else \
|
for lang in $$linguas; do \
|
||||||
$(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(datadir); \
|
dir=$(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES; \
|
||||||
fi
|
$(mkdir_p) $$dir; \
|
||||||
@catalogs='$(CATALOGS)'; \
|
if test -r $$lang.gmo; then \
|
||||||
for cat in $$catalogs; do \
|
$(INSTALL_DATA) $$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \
|
||||||
cat=`basename $$cat`; \
|
echo "installing $$lang.gmo as $$dir/$(GETTEXT_PACKAGE).mo"; \
|
||||||
case "$$cat" in \
|
|
||||||
*.gmo) destdir=$(gnulocaledir);; \
|
|
||||||
*) destdir=$(localedir);; \
|
|
||||||
esac; \
|
|
||||||
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
|
||||||
dir=$(DESTDIR)$$destdir/$$lang/LC_MESSAGES; \
|
|
||||||
if test -n "$(MKINSTALLDIRS)"; then \
|
|
||||||
$(MKINSTALLDIRS) $$dir; \
|
|
||||||
else \
|
else \
|
||||||
$(SHELL) $(top_srcdir)/mkinstalldirs $$dir; \
|
$(INSTALL_DATA) $(srcdir)/$$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \
|
||||||
|
echo "installing $(srcdir)/$$lang.gmo as" \
|
||||||
|
"$$dir/$(GETTEXT_PACKAGE).mo"; \
|
||||||
fi; \
|
fi; \
|
||||||
if test -r $$cat; then \
|
if test -r $$lang.gmo.m; then \
|
||||||
$(INSTALL_DATA) $$cat $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
$(INSTALL_DATA) $$lang.gmo.m $$dir/$(GETTEXT_PACKAGE).mo.m; \
|
||||||
echo "installing $$cat as $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT)"; \
|
echo "installing $$lang.gmo.m as $$dir/$(GETTEXT_PACKAGE).mo.m"; \
|
||||||
else \
|
else \
|
||||||
$(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
if test -r $(srcdir)/$$lang.gmo.m ; then \
|
||||||
echo "installing $(srcdir)/$$cat as" \
|
$(INSTALL_DATA) $(srcdir)/$$lang.gmo.m \
|
||||||
"$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT)"; \
|
$$dir/$(GETTEXT_PACKAGE).mo.m; \
|
||||||
fi; \
|
echo "installing $(srcdir)/$$lang.gmo.m as" \
|
||||||
if test -r $$cat.m; then \
|
"$$dir/$(GETTEXT_PACKAGE).mo.m"; \
|
||||||
$(INSTALL_DATA) $$cat.m $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
|
||||||
echo "installing $$cat.m as $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m"; \
|
|
||||||
else \
|
|
||||||
if test -r $(srcdir)/$$cat.m ; then \
|
|
||||||
$(INSTALL_DATA) $(srcdir)/$$cat.m \
|
|
||||||
$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
|
||||||
echo "installing $(srcdir)/$$cat as" \
|
|
||||||
"$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m"; \
|
|
||||||
else \
|
else \
|
||||||
true; \
|
true; \
|
||||||
fi; \
|
fi; \
|
||||||
fi; \
|
fi; \
|
||||||
done
|
done
|
||||||
if test "$(PACKAGE)" = "glib"; then \
|
|
||||||
if test -n "$(MKINSTALLDIRS)"; then \
|
|
||||||
$(MKINSTALLDIRS) $(DESTDIR)$(gettextsrcdir); \
|
|
||||||
else \
|
|
||||||
$(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(gettextsrcdir); \
|
|
||||||
fi; \
|
|
||||||
$(INSTALL_DATA) $(srcdir)/Makefile.in.in \
|
|
||||||
$(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
|
|
||||||
else \
|
|
||||||
: ; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Define this as empty until I found a useful application.
|
|
||||||
installcheck:
|
|
||||||
|
|
||||||
uninstall:
|
|
||||||
catalogs='$(CATALOGS)'; \
|
|
||||||
for cat in $$catalogs; do \
|
|
||||||
cat=`basename $$cat`; \
|
|
||||||
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
|
||||||
rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
|
||||||
rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
|
||||||
rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
|
||||||
rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
|
||||||
done
|
|
||||||
if test "$(PACKAGE)" = "glib"; then \
|
|
||||||
rm -f $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
check: all
|
|
||||||
|
|
||||||
|
# Empty stubs to satisfy archaic automake needs
|
||||||
dvi info tags TAGS ID:
|
dvi info tags TAGS ID:
|
||||||
|
|
||||||
|
# Define this as empty until I found a useful application.
|
||||||
|
install-exec installcheck:
|
||||||
|
|
||||||
|
uninstall:
|
||||||
|
linguas="$(USE_LINGUAS)"; \
|
||||||
|
for lang in $$linguas; do \
|
||||||
|
rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \
|
||||||
|
rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \
|
||||||
|
done
|
||||||
|
|
||||||
|
check: all $(GETTEXT_PACKAGE).pot
|
||||||
|
rm -f missing notexist
|
||||||
|
srcdir=$(srcdir) $(INTLTOOL_UPDATE) -m
|
||||||
|
if [ -r missing -o -r notexist ]; then \
|
||||||
|
exit 1; \
|
||||||
|
fi
|
||||||
|
|
||||||
mostlyclean:
|
mostlyclean:
|
||||||
rm -f core core.* *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp
|
rm -f *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp
|
||||||
rm -fr *.o
|
|
||||||
rm -f .intltool-merge-cache
|
rm -f .intltool-merge-cache
|
||||||
|
|
||||||
clean: mostlyclean
|
clean: mostlyclean
|
||||||
|
|
||||||
distclean: clean
|
distclean: clean
|
||||||
rm -f Makefile Makefile.in POTFILES *.mo *.msg *.cat *.cat.m
|
rm -f Makefile Makefile.in POTFILES stamp-it
|
||||||
|
rm -f *.mo *.msg *.cat *.cat.m *.gmo
|
||||||
|
|
||||||
maintainer-clean: distclean
|
maintainer-clean: distclean
|
||||||
@echo "This command is intended for maintainers to use;"
|
@echo "This command is intended for maintainers to use;"
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
@echo "it deletes files that may require special tools to rebuild."
|
||||||
rm -f $(GMOFILES)
|
rm -f Makefile.in.in
|
||||||
|
|
||||||
distdir = ../$(GETTEXT_PACKAGE)-$(VERSION)/$(subdir)
|
distdir = ../$(PACKAGE)-$(VERSION)/$(subdir)
|
||||||
dist distdir: $(DISTFILES) $(GETTEXT_PACKAGE).pot
|
dist distdir: $(DISTFILES)
|
||||||
dists="$(DISTFILES)"; \
|
dists="$(DISTFILES)"; \
|
||||||
|
extra_dists="$(EXTRA_DISTFILES)"; \
|
||||||
|
for file in $$extra_dists; do \
|
||||||
|
test -f $(srcdir)/$$file && dists="$$dists $(srcdir)/$$file"; \
|
||||||
|
done; \
|
||||||
for file in $$dists; do \
|
for file in $$dists; do \
|
||||||
ln $(srcdir)/$$file $(distdir) 2> /dev/null \
|
test -f $$file || file="$(srcdir)/$$file"; \
|
||||||
|| cp -p $(srcdir)/$$file $(distdir); \
|
ln $$file $(distdir) 2> /dev/null \
|
||||||
|
|| cp -p $$file $(distdir); \
|
||||||
done
|
done
|
||||||
|
|
||||||
update-po: Makefile
|
update-po: Makefile
|
||||||
$(MAKE) $(GETTEXT_PACKAGE).pot
|
$(MAKE) $(GETTEXT_PACKAGE).pot
|
||||||
tmpdir=`pwd`; \
|
tmpdir=`pwd`; \
|
||||||
catalogs='$(CATALOGS)'; \
|
linguas="$(USE_LINGUAS)"; \
|
||||||
for cat in $$catalogs; do \
|
for lang in $$linguas; do \
|
||||||
cat=`basename $$cat`; \
|
|
||||||
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
|
||||||
echo "$$lang:"; \
|
echo "$$lang:"; \
|
||||||
result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \
|
result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \
|
||||||
if $$result; then \
|
if $$result; then \
|
||||||
|
@ -226,28 +199,20 @@ update-po: Makefile
|
||||||
fi; \
|
fi; \
|
||||||
fi; \
|
fi; \
|
||||||
else \
|
else \
|
||||||
echo "msgmerge for $$cat failed!"; \
|
echo "msgmerge for $$lang.gmo failed!"; \
|
||||||
rm -f $$tmpdir/$$lang.new.po; \
|
rm -f $$tmpdir/$$lang.new.po; \
|
||||||
fi; \
|
fi; \
|
||||||
done
|
done
|
||||||
|
|
||||||
# POTFILES is created from POTFILES.in by stripping comments, empty lines
|
Makefile POTFILES: stamp-it
|
||||||
# and Intltool tags (enclosed in square brackets), and appending a full
|
@if test ! -f $@; then \
|
||||||
# relative path to them
|
rm -f stamp-it; \
|
||||||
POTFILES: POTFILES.in
|
$(MAKE) stamp-it; \
|
||||||
( posrcprefix='$(top_srcdir)/'; \
|
fi
|
||||||
rm -f $@-t $@ \
|
|
||||||
&& (sed -e '/^#/d' \
|
|
||||||
-e 's/^[[].*] *//' \
|
|
||||||
-e '/^[ ]*$$/d' \
|
|
||||||
-e "s@^@ $$posrcprefix@" $(srcdir)/$@.in \
|
|
||||||
| sed -e '$$!s/$$/ \\/') > $@-t \
|
|
||||||
&& chmod a-w $@-t \
|
|
||||||
&& mv $@-t $@ )
|
|
||||||
|
|
||||||
Makefile: Makefile.in.in ../config.status POTFILES
|
stamp-it: Makefile.in.in $(top_builddir)/config.status POTFILES.in
|
||||||
cd .. \
|
cd $(top_builddir) \
|
||||||
&& CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \
|
&& CONFIG_FILES=$(subdir)/Makefile.in CONFIG_HEADERS= CONFIG_LINKS= \
|
||||||
$(SHELL) ./config.status
|
$(SHELL) ./config.status
|
||||||
|
|
||||||
# Tell versions [3.59,3.63) of GNU make not to export all variables.
|
# Tell versions [3.59,3.63) of GNU make not to export all variables.
|
||||||
|
|
|
@ -11,19 +11,23 @@
|
||||||
#
|
#
|
||||||
# - Modified by jacob berkman <jacob@ximian.com> to install
|
# - Modified by jacob berkman <jacob@ximian.com> to install
|
||||||
# Makefile.in.in and po2tbl.sed.in for use with glib-gettextize
|
# Makefile.in.in and po2tbl.sed.in for use with glib-gettextize
|
||||||
|
#
|
||||||
|
# - Modified by Rodney Dawes <dobey@novell.com> for use with intltool
|
||||||
|
#
|
||||||
|
# We have the following line for use by intltoolize:
|
||||||
|
# INTLTOOL_MAKEFILE
|
||||||
|
|
||||||
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@-std-plug-ins
|
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@-plug-ins
|
||||||
XGETTEXT_KEYWORDS=--keyword=_ --keyword=N_ --keyword=Q_:1g --keyword=C_:1c,2
|
XGETTEXT_KEYWORDS=--keyword=_ --keyword=N_ --keyword=Q_:1g --keyword=C_:1c,2
|
||||||
|
|
||||||
PACKAGE = @PACKAGE@
|
PACKAGE = @PACKAGE@
|
||||||
VERSION = @VERSION@
|
VERSION = @VERSION@
|
||||||
|
|
||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
@SET_MAKE@
|
|
||||||
|
|
||||||
srcdir = @srcdir@
|
srcdir = @srcdir@
|
||||||
top_srcdir = @top_srcdir@
|
top_srcdir = @top_srcdir@
|
||||||
top_builddir = ..
|
top_builddir = @top_builddir@
|
||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
|
|
||||||
prefix = @prefix@
|
prefix = @prefix@
|
||||||
|
@ -31,19 +35,17 @@ exec_prefix = @exec_prefix@
|
||||||
datadir = @datadir@
|
datadir = @datadir@
|
||||||
datarootdir = @datarootdir@
|
datarootdir = @datarootdir@
|
||||||
libdir = @libdir@
|
libdir = @libdir@
|
||||||
localedir = $(libdir)/locale
|
DATADIRNAME = @DATADIRNAME@
|
||||||
gnulocaledir = $(datadir)/locale
|
itlocaledir = $(prefix)/$(DATADIRNAME)/locale
|
||||||
gettextsrcdir = $(datadir)/glib-2.0/gettext/po
|
|
||||||
subdir = po
|
subdir = po
|
||||||
install_sh = @install_sh@
|
install_sh = @install_sh@
|
||||||
mkdir_p = @mkdir_p@
|
# Automake >= 1.8 provides @mkdir_p@.
|
||||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
# Until it can be supposed, use the safe fallback:
|
||||||
|
mkdir_p = $(install_sh) -d
|
||||||
|
|
||||||
INSTALL = @INSTALL@
|
INSTALL = @INSTALL@
|
||||||
INSTALL_DATA = @INSTALL_DATA@
|
INSTALL_DATA = @INSTALL_DATA@
|
||||||
|
|
||||||
CC = @CC@
|
|
||||||
GENCAT = @GENCAT@
|
|
||||||
GMSGFMT = @GMSGFMT@
|
GMSGFMT = @GMSGFMT@
|
||||||
MSGFMT = @MSGFMT@
|
MSGFMT = @MSGFMT@
|
||||||
XGETTEXT = @XGETTEXT@
|
XGETTEXT = @XGETTEXT@
|
||||||
|
@ -52,35 +54,30 @@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
|
||||||
MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist
|
MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist
|
||||||
GENPOT = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot
|
GENPOT = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot
|
||||||
|
|
||||||
DEFS = @DEFS@
|
ALL_LINGUAS = @ALL_LINGUAS@
|
||||||
CFLAGS = @CFLAGS@
|
|
||||||
CPPFLAGS = @CPPFLAGS@
|
|
||||||
|
|
||||||
INCLUDES = -I.. -I$(top_srcdir)/intl
|
PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; fi)
|
||||||
|
|
||||||
COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
|
USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep ^$$lang$$ $(srcdir)/LINGUAS`" -o -n "`echo $$ALINGUAS|grep ' ?$$lang ?'`"; then printf "$$lang "; fi; done; fi)
|
||||||
|
|
||||||
SOURCES =
|
USE_LINGUAS=$(shell if test -n "$(USER_LINGUAS)"; then LLINGUAS="$(USER_LINGUAS)"; else if test -n "$(PO_LINGUAS)"; then LLINGUAS="$(PO_LINGUAS)"; else LLINGUAS="$(ALL_LINGUAS)"; fi; fi; for lang in $$LLINGUAS; do printf "$$lang "; done)
|
||||||
POFILES = @POFILES@
|
|
||||||
GMOFILES = @GMOFILES@
|
POFILES=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.po "; done)
|
||||||
DISTFILES = ChangeLog Makefile.in.in POTFILES.in \
|
|
||||||
$(POFILES) $(GMOFILES) $(SOURCES)
|
DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(POFILES)
|
||||||
|
EXTRA_DISTFILES = POTFILES.skip Makevars LINGUAS
|
||||||
|
|
||||||
POTFILES = \
|
POTFILES = \
|
||||||
|
# This comment gets stripped out
|
||||||
|
|
||||||
CATALOGS = @CATALOGS@
|
CATALOGS=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.gmo "; done)
|
||||||
CATOBJEXT = @CATOBJEXT@
|
|
||||||
INSTOBJEXT = @INSTOBJEXT@
|
|
||||||
|
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
.SUFFIXES: .c .o .po .pox .gmo .mo .msg .cat
|
.SUFFIXES: .po .pox .gmo .mo .msg .cat
|
||||||
|
|
||||||
.c.o:
|
|
||||||
$(COMPILE) $<
|
|
||||||
|
|
||||||
.po.pox:
|
.po.pox:
|
||||||
$(MAKE) $(GETTEXT_PACKAGE).pot
|
$(MAKE) $(GETTEXT_PACKAGE).pot
|
||||||
$(MSGMERGE) $< $(top_builddir)/po/$(GETTEXT_PACKAGE).pot -o $*pox
|
$(MSGMERGE) $< $(GETTEXT_PACKAGE).pot -o $*.pox
|
||||||
|
|
||||||
.po.mo:
|
.po.mo:
|
||||||
$(MSGFMT) -o $@ $<
|
$(MSGFMT) -o $@ $<
|
||||||
|
@ -91,7 +88,7 @@ INSTOBJEXT = @INSTOBJEXT@
|
||||||
|
|
||||||
.po.cat:
|
.po.cat:
|
||||||
sed -f ../intl/po2msg.sed < $< > $*.msg \
|
sed -f ../intl/po2msg.sed < $< > $*.msg \
|
||||||
&& rm -f $@ && $(GENCAT) $@ $*.msg
|
&& rm -f $@ && gencat $@ $*.msg
|
||||||
|
|
||||||
|
|
||||||
all: all-@USE_NLS@
|
all: all-@USE_NLS@
|
||||||
|
@ -102,115 +99,91 @@ all-no:
|
||||||
$(GETTEXT_PACKAGE).pot: $(POTFILES)
|
$(GETTEXT_PACKAGE).pot: $(POTFILES)
|
||||||
$(GENPOT)
|
$(GENPOT)
|
||||||
|
|
||||||
install: install-exec install-data
|
install: install-data
|
||||||
install-exec:
|
|
||||||
install-data: install-data-@USE_NLS@
|
install-data: install-data-@USE_NLS@
|
||||||
install-data-no: all
|
install-data-no: all
|
||||||
install-data-yes: all
|
install-data-yes: all
|
||||||
if test -n "$(MKINSTALLDIRS)"; then \
|
$(mkdir_p) $(DESTDIR)$(itlocaledir)
|
||||||
$(MKINSTALLDIRS) $(DESTDIR)$(datadir); \
|
linguas="$(USE_LINGUAS)"; \
|
||||||
else \
|
for lang in $$linguas; do \
|
||||||
$(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(datadir); \
|
dir=$(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES; \
|
||||||
fi
|
$(mkdir_p) $$dir; \
|
||||||
@catalogs='$(CATALOGS)'; \
|
if test -r $$lang.gmo; then \
|
||||||
for cat in $$catalogs; do \
|
$(INSTALL_DATA) $$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \
|
||||||
cat=`basename $$cat`; \
|
echo "installing $$lang.gmo as $$dir/$(GETTEXT_PACKAGE).mo"; \
|
||||||
case "$$cat" in \
|
|
||||||
*.gmo) destdir=$(gnulocaledir);; \
|
|
||||||
*) destdir=$(localedir);; \
|
|
||||||
esac; \
|
|
||||||
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
|
||||||
dir=$(DESTDIR)$$destdir/$$lang/LC_MESSAGES; \
|
|
||||||
if test -n "$(MKINSTALLDIRS)"; then \
|
|
||||||
$(MKINSTALLDIRS) $$dir; \
|
|
||||||
else \
|
else \
|
||||||
$(SHELL) $(top_srcdir)/mkinstalldirs $$dir; \
|
$(INSTALL_DATA) $(srcdir)/$$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \
|
||||||
|
echo "installing $(srcdir)/$$lang.gmo as" \
|
||||||
|
"$$dir/$(GETTEXT_PACKAGE).mo"; \
|
||||||
fi; \
|
fi; \
|
||||||
if test -r $$cat; then \
|
if test -r $$lang.gmo.m; then \
|
||||||
$(INSTALL_DATA) $$cat $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
$(INSTALL_DATA) $$lang.gmo.m $$dir/$(GETTEXT_PACKAGE).mo.m; \
|
||||||
echo "installing $$cat as $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT)"; \
|
echo "installing $$lang.gmo.m as $$dir/$(GETTEXT_PACKAGE).mo.m"; \
|
||||||
else \
|
else \
|
||||||
$(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
if test -r $(srcdir)/$$lang.gmo.m ; then \
|
||||||
echo "installing $(srcdir)/$$cat as" \
|
$(INSTALL_DATA) $(srcdir)/$$lang.gmo.m \
|
||||||
"$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT)"; \
|
$$dir/$(GETTEXT_PACKAGE).mo.m; \
|
||||||
fi; \
|
echo "installing $(srcdir)/$$lang.gmo.m as" \
|
||||||
if test -r $$cat.m; then \
|
"$$dir/$(GETTEXT_PACKAGE).mo.m"; \
|
||||||
$(INSTALL_DATA) $$cat.m $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
|
||||||
echo "installing $$cat.m as $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m"; \
|
|
||||||
else \
|
|
||||||
if test -r $(srcdir)/$$cat.m ; then \
|
|
||||||
$(INSTALL_DATA) $(srcdir)/$$cat.m \
|
|
||||||
$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
|
||||||
echo "installing $(srcdir)/$$cat as" \
|
|
||||||
"$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m"; \
|
|
||||||
else \
|
else \
|
||||||
true; \
|
true; \
|
||||||
fi; \
|
fi; \
|
||||||
fi; \
|
fi; \
|
||||||
done
|
done
|
||||||
if test "$(PACKAGE)" = "glib"; then \
|
|
||||||
if test -n "$(MKINSTALLDIRS)"; then \
|
|
||||||
$(MKINSTALLDIRS) $(DESTDIR)$(gettextsrcdir); \
|
|
||||||
else \
|
|
||||||
$(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(gettextsrcdir); \
|
|
||||||
fi; \
|
|
||||||
$(INSTALL_DATA) $(srcdir)/Makefile.in.in \
|
|
||||||
$(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
|
|
||||||
else \
|
|
||||||
: ; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Define this as empty until I found a useful application.
|
|
||||||
installcheck:
|
|
||||||
|
|
||||||
uninstall:
|
|
||||||
catalogs='$(CATALOGS)'; \
|
|
||||||
for cat in $$catalogs; do \
|
|
||||||
cat=`basename $$cat`; \
|
|
||||||
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
|
||||||
rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
|
||||||
rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
|
||||||
rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
|
||||||
rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
|
||||||
done
|
|
||||||
if test "$(PACKAGE)" = "glib"; then \
|
|
||||||
rm -f $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
check: all
|
|
||||||
|
|
||||||
|
# Empty stubs to satisfy archaic automake needs
|
||||||
dvi info tags TAGS ID:
|
dvi info tags TAGS ID:
|
||||||
|
|
||||||
|
# Define this as empty until I found a useful application.
|
||||||
|
install-exec installcheck:
|
||||||
|
|
||||||
|
uninstall:
|
||||||
|
linguas="$(USE_LINGUAS)"; \
|
||||||
|
for lang in $$linguas; do \
|
||||||
|
rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \
|
||||||
|
rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \
|
||||||
|
done
|
||||||
|
|
||||||
|
check: all $(GETTEXT_PACKAGE).pot
|
||||||
|
rm -f missing notexist
|
||||||
|
srcdir=$(srcdir) $(INTLTOOL_UPDATE) -m
|
||||||
|
if [ -r missing -o -r notexist ]; then \
|
||||||
|
exit 1; \
|
||||||
|
fi
|
||||||
|
|
||||||
mostlyclean:
|
mostlyclean:
|
||||||
rm -f core core.* *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp
|
rm -f *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp
|
||||||
rm -fr *.o
|
|
||||||
rm -f .intltool-merge-cache
|
rm -f .intltool-merge-cache
|
||||||
|
|
||||||
clean: mostlyclean
|
clean: mostlyclean
|
||||||
|
|
||||||
distclean: clean
|
distclean: clean
|
||||||
rm -f Makefile Makefile.in POTFILES *.mo *.msg *.cat *.cat.m
|
rm -f Makefile Makefile.in POTFILES stamp-it
|
||||||
|
rm -f *.mo *.msg *.cat *.cat.m *.gmo
|
||||||
|
|
||||||
maintainer-clean: distclean
|
maintainer-clean: distclean
|
||||||
@echo "This command is intended for maintainers to use;"
|
@echo "This command is intended for maintainers to use;"
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
@echo "it deletes files that may require special tools to rebuild."
|
||||||
rm -f $(GMOFILES)
|
rm -f Makefile.in.in
|
||||||
|
|
||||||
distdir = ../$(GETTEXT_PACKAGE)-$(VERSION)/$(subdir)
|
distdir = ../$(PACKAGE)-$(VERSION)/$(subdir)
|
||||||
dist distdir: $(DISTFILES) $(GETTEXT_PACKAGE).pot
|
dist distdir: $(DISTFILES)
|
||||||
dists="$(DISTFILES)"; \
|
dists="$(DISTFILES)"; \
|
||||||
|
extra_dists="$(EXTRA_DISTFILES)"; \
|
||||||
|
for file in $$extra_dists; do \
|
||||||
|
test -f $(srcdir)/$$file && dists="$$dists $(srcdir)/$$file"; \
|
||||||
|
done; \
|
||||||
for file in $$dists; do \
|
for file in $$dists; do \
|
||||||
ln $(srcdir)/$$file $(distdir) 2> /dev/null \
|
test -f $$file || file="$(srcdir)/$$file"; \
|
||||||
|| cp -p $(srcdir)/$$file $(distdir); \
|
ln $$file $(distdir) 2> /dev/null \
|
||||||
|
|| cp -p $$file $(distdir); \
|
||||||
done
|
done
|
||||||
|
|
||||||
update-po: Makefile
|
update-po: Makefile
|
||||||
$(MAKE) $(GETTEXT_PACKAGE).pot
|
$(MAKE) $(GETTEXT_PACKAGE).pot
|
||||||
tmpdir=`pwd`; \
|
tmpdir=`pwd`; \
|
||||||
catalogs='$(CATALOGS)'; \
|
linguas="$(USE_LINGUAS)"; \
|
||||||
for cat in $$catalogs; do \
|
for lang in $$linguas; do \
|
||||||
cat=`basename $$cat`; \
|
|
||||||
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
|
||||||
echo "$$lang:"; \
|
echo "$$lang:"; \
|
||||||
result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \
|
result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \
|
||||||
if $$result; then \
|
if $$result; then \
|
||||||
|
@ -226,28 +199,20 @@ update-po: Makefile
|
||||||
fi; \
|
fi; \
|
||||||
fi; \
|
fi; \
|
||||||
else \
|
else \
|
||||||
echo "msgmerge for $$cat failed!"; \
|
echo "msgmerge for $$lang.gmo failed!"; \
|
||||||
rm -f $$tmpdir/$$lang.new.po; \
|
rm -f $$tmpdir/$$lang.new.po; \
|
||||||
fi; \
|
fi; \
|
||||||
done
|
done
|
||||||
|
|
||||||
# POTFILES is created from POTFILES.in by stripping comments, empty lines
|
Makefile POTFILES: stamp-it
|
||||||
# and Intltool tags (enclosed in square brackets), and appending a full
|
@if test ! -f $@; then \
|
||||||
# relative path to them
|
rm -f stamp-it; \
|
||||||
POTFILES: POTFILES.in
|
$(MAKE) stamp-it; \
|
||||||
( posrcprefix='$(top_srcdir)/'; \
|
fi
|
||||||
rm -f $@-t $@ \
|
|
||||||
&& (sed -e '/^#/d' \
|
|
||||||
-e 's/^[[].*] *//' \
|
|
||||||
-e '/^[ ]*$$/d' \
|
|
||||||
-e "s@^@ $$posrcprefix@" $(srcdir)/$@.in \
|
|
||||||
| sed -e '$$!s/$$/ \\/') > $@-t \
|
|
||||||
&& chmod a-w $@-t \
|
|
||||||
&& mv $@-t $@ )
|
|
||||||
|
|
||||||
Makefile: Makefile.in.in ../config.status POTFILES
|
stamp-it: Makefile.in.in $(top_builddir)/config.status POTFILES.in
|
||||||
cd .. \
|
cd $(top_builddir) \
|
||||||
&& CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \
|
&& CONFIG_FILES=$(subdir)/Makefile.in CONFIG_HEADERS= CONFIG_LINKS= \
|
||||||
$(SHELL) ./config.status
|
$(SHELL) ./config.status
|
||||||
|
|
||||||
# Tell versions [3.59,3.63) of GNU make not to export all variables.
|
# Tell versions [3.59,3.63) of GNU make not to export all variables.
|
||||||
|
|
|
@ -11,6 +11,11 @@
|
||||||
#
|
#
|
||||||
# - Modified by jacob berkman <jacob@ximian.com> to install
|
# - Modified by jacob berkman <jacob@ximian.com> to install
|
||||||
# Makefile.in.in and po2tbl.sed.in for use with glib-gettextize
|
# Makefile.in.in and po2tbl.sed.in for use with glib-gettextize
|
||||||
|
#
|
||||||
|
# - Modified by Rodney Dawes <dobey@novell.com> for use with intltool
|
||||||
|
#
|
||||||
|
# We have the following line for use by intltoolize:
|
||||||
|
# INTLTOOL_MAKEFILE
|
||||||
|
|
||||||
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@-python
|
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@-python
|
||||||
XGETTEXT_KEYWORDS=--keyword=_ --keyword=N_ --keyword=Q_:1g --keyword=C_:1c,2
|
XGETTEXT_KEYWORDS=--keyword=_ --keyword=N_ --keyword=Q_:1g --keyword=C_:1c,2
|
||||||
|
@ -19,11 +24,10 @@ PACKAGE = @PACKAGE@
|
||||||
VERSION = @VERSION@
|
VERSION = @VERSION@
|
||||||
|
|
||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
@SET_MAKE@
|
|
||||||
|
|
||||||
srcdir = @srcdir@
|
srcdir = @srcdir@
|
||||||
top_srcdir = @top_srcdir@
|
top_srcdir = @top_srcdir@
|
||||||
top_builddir = ..
|
top_builddir = @top_builddir@
|
||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
|
|
||||||
prefix = @prefix@
|
prefix = @prefix@
|
||||||
|
@ -31,19 +35,17 @@ exec_prefix = @exec_prefix@
|
||||||
datadir = @datadir@
|
datadir = @datadir@
|
||||||
datarootdir = @datarootdir@
|
datarootdir = @datarootdir@
|
||||||
libdir = @libdir@
|
libdir = @libdir@
|
||||||
localedir = $(libdir)/locale
|
DATADIRNAME = @DATADIRNAME@
|
||||||
gnulocaledir = $(datadir)/locale
|
itlocaledir = $(prefix)/$(DATADIRNAME)/locale
|
||||||
gettextsrcdir = $(datadir)/glib-2.0/gettext/po
|
|
||||||
subdir = po
|
subdir = po
|
||||||
install_sh = @install_sh@
|
install_sh = @install_sh@
|
||||||
mkdir_p = @mkdir_p@
|
# Automake >= 1.8 provides @mkdir_p@.
|
||||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
# Until it can be supposed, use the safe fallback:
|
||||||
|
mkdir_p = $(install_sh) -d
|
||||||
|
|
||||||
INSTALL = @INSTALL@
|
INSTALL = @INSTALL@
|
||||||
INSTALL_DATA = @INSTALL_DATA@
|
INSTALL_DATA = @INSTALL_DATA@
|
||||||
|
|
||||||
CC = @CC@
|
|
||||||
GENCAT = @GENCAT@
|
|
||||||
GMSGFMT = @GMSGFMT@
|
GMSGFMT = @GMSGFMT@
|
||||||
MSGFMT = @MSGFMT@
|
MSGFMT = @MSGFMT@
|
||||||
XGETTEXT = @XGETTEXT@
|
XGETTEXT = @XGETTEXT@
|
||||||
|
@ -52,35 +54,30 @@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
|
||||||
MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist
|
MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist
|
||||||
GENPOT = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot
|
GENPOT = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot
|
||||||
|
|
||||||
DEFS = @DEFS@
|
ALL_LINGUAS = @ALL_LINGUAS@
|
||||||
CFLAGS = @CFLAGS@
|
|
||||||
CPPFLAGS = @CPPFLAGS@
|
|
||||||
|
|
||||||
INCLUDES = -I.. -I$(top_srcdir)/intl
|
PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; fi)
|
||||||
|
|
||||||
COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
|
USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep ^$$lang$$ $(srcdir)/LINGUAS`" -o -n "`echo $$ALINGUAS|grep ' ?$$lang ?'`"; then printf "$$lang "; fi; done; fi)
|
||||||
|
|
||||||
SOURCES =
|
USE_LINGUAS=$(shell if test -n "$(USER_LINGUAS)"; then LLINGUAS="$(USER_LINGUAS)"; else if test -n "$(PO_LINGUAS)"; then LLINGUAS="$(PO_LINGUAS)"; else LLINGUAS="$(ALL_LINGUAS)"; fi; fi; for lang in $$LLINGUAS; do printf "$$lang "; done)
|
||||||
POFILES = @POFILES@
|
|
||||||
GMOFILES = @GMOFILES@
|
POFILES=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.po "; done)
|
||||||
DISTFILES = ChangeLog Makefile.in.in POTFILES.in \
|
|
||||||
$(POFILES) $(GMOFILES) $(SOURCES)
|
DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(POFILES)
|
||||||
|
EXTRA_DISTFILES = POTFILES.skip Makevars LINGUAS
|
||||||
|
|
||||||
POTFILES = \
|
POTFILES = \
|
||||||
|
# This comment gets stripped out
|
||||||
|
|
||||||
CATALOGS = @CATALOGS@
|
CATALOGS=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.gmo "; done)
|
||||||
CATOBJEXT = @CATOBJEXT@
|
|
||||||
INSTOBJEXT = @INSTOBJEXT@
|
|
||||||
|
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
.SUFFIXES: .c .o .po .pox .gmo .mo .msg .cat
|
.SUFFIXES: .po .pox .gmo .mo .msg .cat
|
||||||
|
|
||||||
.c.o:
|
|
||||||
$(COMPILE) $<
|
|
||||||
|
|
||||||
.po.pox:
|
.po.pox:
|
||||||
$(MAKE) $(GETTEXT_PACKAGE).pot
|
$(MAKE) $(GETTEXT_PACKAGE).pot
|
||||||
$(MSGMERGE) $< $(top_builddir)/po/$(GETTEXT_PACKAGE).pot -o $*pox
|
$(MSGMERGE) $< $(GETTEXT_PACKAGE).pot -o $*.pox
|
||||||
|
|
||||||
.po.mo:
|
.po.mo:
|
||||||
$(MSGFMT) -o $@ $<
|
$(MSGFMT) -o $@ $<
|
||||||
|
@ -91,7 +88,7 @@ INSTOBJEXT = @INSTOBJEXT@
|
||||||
|
|
||||||
.po.cat:
|
.po.cat:
|
||||||
sed -f ../intl/po2msg.sed < $< > $*.msg \
|
sed -f ../intl/po2msg.sed < $< > $*.msg \
|
||||||
&& rm -f $@ && $(GENCAT) $@ $*.msg
|
&& rm -f $@ && gencat $@ $*.msg
|
||||||
|
|
||||||
|
|
||||||
all: all-@USE_NLS@
|
all: all-@USE_NLS@
|
||||||
|
@ -102,115 +99,91 @@ all-no:
|
||||||
$(GETTEXT_PACKAGE).pot: $(POTFILES)
|
$(GETTEXT_PACKAGE).pot: $(POTFILES)
|
||||||
$(GENPOT)
|
$(GENPOT)
|
||||||
|
|
||||||
install: install-exec install-data
|
install: install-data
|
||||||
install-exec:
|
|
||||||
install-data: install-data-@USE_NLS@
|
install-data: install-data-@USE_NLS@
|
||||||
install-data-no: all
|
install-data-no: all
|
||||||
install-data-yes: all
|
install-data-yes: all
|
||||||
if test -n "$(MKINSTALLDIRS)"; then \
|
$(mkdir_p) $(DESTDIR)$(itlocaledir)
|
||||||
$(MKINSTALLDIRS) $(DESTDIR)$(datadir); \
|
linguas="$(USE_LINGUAS)"; \
|
||||||
else \
|
for lang in $$linguas; do \
|
||||||
$(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(datadir); \
|
dir=$(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES; \
|
||||||
fi
|
$(mkdir_p) $$dir; \
|
||||||
@catalogs='$(CATALOGS)'; \
|
if test -r $$lang.gmo; then \
|
||||||
for cat in $$catalogs; do \
|
$(INSTALL_DATA) $$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \
|
||||||
cat=`basename $$cat`; \
|
echo "installing $$lang.gmo as $$dir/$(GETTEXT_PACKAGE).mo"; \
|
||||||
case "$$cat" in \
|
|
||||||
*.gmo) destdir=$(gnulocaledir);; \
|
|
||||||
*) destdir=$(localedir);; \
|
|
||||||
esac; \
|
|
||||||
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
|
||||||
dir=$(DESTDIR)$$destdir/$$lang/LC_MESSAGES; \
|
|
||||||
if test -n "$(MKINSTALLDIRS)"; then \
|
|
||||||
$(MKINSTALLDIRS) $$dir; \
|
|
||||||
else \
|
else \
|
||||||
$(SHELL) $(top_srcdir)/mkinstalldirs $$dir; \
|
$(INSTALL_DATA) $(srcdir)/$$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \
|
||||||
|
echo "installing $(srcdir)/$$lang.gmo as" \
|
||||||
|
"$$dir/$(GETTEXT_PACKAGE).mo"; \
|
||||||
fi; \
|
fi; \
|
||||||
if test -r $$cat; then \
|
if test -r $$lang.gmo.m; then \
|
||||||
$(INSTALL_DATA) $$cat $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
$(INSTALL_DATA) $$lang.gmo.m $$dir/$(GETTEXT_PACKAGE).mo.m; \
|
||||||
echo "installing $$cat as $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT)"; \
|
echo "installing $$lang.gmo.m as $$dir/$(GETTEXT_PACKAGE).mo.m"; \
|
||||||
else \
|
else \
|
||||||
$(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
if test -r $(srcdir)/$$lang.gmo.m ; then \
|
||||||
echo "installing $(srcdir)/$$cat as" \
|
$(INSTALL_DATA) $(srcdir)/$$lang.gmo.m \
|
||||||
"$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT)"; \
|
$$dir/$(GETTEXT_PACKAGE).mo.m; \
|
||||||
fi; \
|
echo "installing $(srcdir)/$$lang.gmo.m as" \
|
||||||
if test -r $$cat.m; then \
|
"$$dir/$(GETTEXT_PACKAGE).mo.m"; \
|
||||||
$(INSTALL_DATA) $$cat.m $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
|
||||||
echo "installing $$cat.m as $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m"; \
|
|
||||||
else \
|
|
||||||
if test -r $(srcdir)/$$cat.m ; then \
|
|
||||||
$(INSTALL_DATA) $(srcdir)/$$cat.m \
|
|
||||||
$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
|
||||||
echo "installing $(srcdir)/$$cat as" \
|
|
||||||
"$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m"; \
|
|
||||||
else \
|
else \
|
||||||
true; \
|
true; \
|
||||||
fi; \
|
fi; \
|
||||||
fi; \
|
fi; \
|
||||||
done
|
done
|
||||||
if test "$(PACKAGE)" = "glib"; then \
|
|
||||||
if test -n "$(MKINSTALLDIRS)"; then \
|
|
||||||
$(MKINSTALLDIRS) $(DESTDIR)$(gettextsrcdir); \
|
|
||||||
else \
|
|
||||||
$(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(gettextsrcdir); \
|
|
||||||
fi; \
|
|
||||||
$(INSTALL_DATA) $(srcdir)/Makefile.in.in \
|
|
||||||
$(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
|
|
||||||
else \
|
|
||||||
: ; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Define this as empty until I found a useful application.
|
|
||||||
installcheck:
|
|
||||||
|
|
||||||
uninstall:
|
|
||||||
catalogs='$(CATALOGS)'; \
|
|
||||||
for cat in $$catalogs; do \
|
|
||||||
cat=`basename $$cat`; \
|
|
||||||
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
|
||||||
rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
|
||||||
rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
|
||||||
rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
|
||||||
rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
|
||||||
done
|
|
||||||
if test "$(PACKAGE)" = "glib"; then \
|
|
||||||
rm -f $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
check: all
|
|
||||||
|
|
||||||
|
# Empty stubs to satisfy archaic automake needs
|
||||||
dvi info tags TAGS ID:
|
dvi info tags TAGS ID:
|
||||||
|
|
||||||
|
# Define this as empty until I found a useful application.
|
||||||
|
install-exec installcheck:
|
||||||
|
|
||||||
|
uninstall:
|
||||||
|
linguas="$(USE_LINGUAS)"; \
|
||||||
|
for lang in $$linguas; do \
|
||||||
|
rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \
|
||||||
|
rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \
|
||||||
|
done
|
||||||
|
|
||||||
|
check: all $(GETTEXT_PACKAGE).pot
|
||||||
|
rm -f missing notexist
|
||||||
|
srcdir=$(srcdir) $(INTLTOOL_UPDATE) -m
|
||||||
|
if [ -r missing -o -r notexist ]; then \
|
||||||
|
exit 1; \
|
||||||
|
fi
|
||||||
|
|
||||||
mostlyclean:
|
mostlyclean:
|
||||||
rm -f core core.* *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp
|
rm -f *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp
|
||||||
rm -fr *.o
|
|
||||||
rm -f .intltool-merge-cache
|
rm -f .intltool-merge-cache
|
||||||
|
|
||||||
clean: mostlyclean
|
clean: mostlyclean
|
||||||
|
|
||||||
distclean: clean
|
distclean: clean
|
||||||
rm -f Makefile Makefile.in POTFILES *.mo *.msg *.cat *.cat.m
|
rm -f Makefile Makefile.in POTFILES stamp-it
|
||||||
|
rm -f *.mo *.msg *.cat *.cat.m *.gmo
|
||||||
|
|
||||||
maintainer-clean: distclean
|
maintainer-clean: distclean
|
||||||
@echo "This command is intended for maintainers to use;"
|
@echo "This command is intended for maintainers to use;"
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
@echo "it deletes files that may require special tools to rebuild."
|
||||||
rm -f $(GMOFILES)
|
rm -f Makefile.in.in
|
||||||
|
|
||||||
distdir = ../$(GETTEXT_PACKAGE)-$(VERSION)/$(subdir)
|
distdir = ../$(PACKAGE)-$(VERSION)/$(subdir)
|
||||||
dist distdir: $(DISTFILES) $(GETTEXT_PACKAGE).pot
|
dist distdir: $(DISTFILES)
|
||||||
dists="$(DISTFILES)"; \
|
dists="$(DISTFILES)"; \
|
||||||
|
extra_dists="$(EXTRA_DISTFILES)"; \
|
||||||
|
for file in $$extra_dists; do \
|
||||||
|
test -f $(srcdir)/$$file && dists="$$dists $(srcdir)/$$file"; \
|
||||||
|
done; \
|
||||||
for file in $$dists; do \
|
for file in $$dists; do \
|
||||||
ln $(srcdir)/$$file $(distdir) 2> /dev/null \
|
test -f $$file || file="$(srcdir)/$$file"; \
|
||||||
|| cp -p $(srcdir)/$$file $(distdir); \
|
ln $$file $(distdir) 2> /dev/null \
|
||||||
|
|| cp -p $$file $(distdir); \
|
||||||
done
|
done
|
||||||
|
|
||||||
update-po: Makefile
|
update-po: Makefile
|
||||||
$(MAKE) $(GETTEXT_PACKAGE).pot
|
$(MAKE) $(GETTEXT_PACKAGE).pot
|
||||||
tmpdir=`pwd`; \
|
tmpdir=`pwd`; \
|
||||||
catalogs='$(CATALOGS)'; \
|
linguas="$(USE_LINGUAS)"; \
|
||||||
for cat in $$catalogs; do \
|
for lang in $$linguas; do \
|
||||||
cat=`basename $$cat`; \
|
|
||||||
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
|
||||||
echo "$$lang:"; \
|
echo "$$lang:"; \
|
||||||
result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \
|
result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \
|
||||||
if $$result; then \
|
if $$result; then \
|
||||||
|
@ -226,28 +199,20 @@ update-po: Makefile
|
||||||
fi; \
|
fi; \
|
||||||
fi; \
|
fi; \
|
||||||
else \
|
else \
|
||||||
echo "msgmerge for $$cat failed!"; \
|
echo "msgmerge for $$lang.gmo failed!"; \
|
||||||
rm -f $$tmpdir/$$lang.new.po; \
|
rm -f $$tmpdir/$$lang.new.po; \
|
||||||
fi; \
|
fi; \
|
||||||
done
|
done
|
||||||
|
|
||||||
# POTFILES is created from POTFILES.in by stripping comments, empty lines
|
Makefile POTFILES: stamp-it
|
||||||
# and Intltool tags (enclosed in square brackets), and appending a full
|
@if test ! -f $@; then \
|
||||||
# relative path to them
|
rm -f stamp-it; \
|
||||||
POTFILES: POTFILES.in
|
$(MAKE) stamp-it; \
|
||||||
( posrcprefix='$(top_srcdir)/'; \
|
fi
|
||||||
rm -f $@-t $@ \
|
|
||||||
&& (sed -e '/^#/d' \
|
|
||||||
-e 's/^[[].*] *//' \
|
|
||||||
-e '/^[ ]*$$/d' \
|
|
||||||
-e "s@^@ $$posrcprefix@" $(srcdir)/$@.in \
|
|
||||||
| sed -e '$$!s/$$/ \\/') > $@-t \
|
|
||||||
&& chmod a-w $@-t \
|
|
||||||
&& mv $@-t $@ )
|
|
||||||
|
|
||||||
Makefile: Makefile.in.in ../config.status POTFILES
|
stamp-it: Makefile.in.in $(top_builddir)/config.status POTFILES.in
|
||||||
cd .. \
|
cd $(top_builddir) \
|
||||||
&& CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \
|
&& CONFIG_FILES=$(subdir)/Makefile.in CONFIG_HEADERS= CONFIG_LINKS= \
|
||||||
$(SHELL) ./config.status
|
$(SHELL) ./config.status
|
||||||
|
|
||||||
# Tell versions [3.59,3.63) of GNU make not to export all variables.
|
# Tell versions [3.59,3.63) of GNU make not to export all variables.
|
||||||
|
|
|
@ -11,6 +11,11 @@
|
||||||
#
|
#
|
||||||
# - Modified by jacob berkman <jacob@ximian.com> to install
|
# - Modified by jacob berkman <jacob@ximian.com> to install
|
||||||
# Makefile.in.in and po2tbl.sed.in for use with glib-gettextize
|
# Makefile.in.in and po2tbl.sed.in for use with glib-gettextize
|
||||||
|
#
|
||||||
|
# - Modified by Rodney Dawes <dobey@novell.com> for use with intltool
|
||||||
|
#
|
||||||
|
# We have the following line for use by intltoolize:
|
||||||
|
# INTLTOOL_MAKEFILE
|
||||||
|
|
||||||
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@-script-fu
|
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@-script-fu
|
||||||
XGETTEXT_KEYWORDS=--keyword=_ --keyword=N_ --keyword=Q_:1g --keyword=C_:1c,2
|
XGETTEXT_KEYWORDS=--keyword=_ --keyword=N_ --keyword=Q_:1g --keyword=C_:1c,2
|
||||||
|
@ -19,11 +24,10 @@ PACKAGE = @PACKAGE@
|
||||||
VERSION = @VERSION@
|
VERSION = @VERSION@
|
||||||
|
|
||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
@SET_MAKE@
|
|
||||||
|
|
||||||
srcdir = @srcdir@
|
srcdir = @srcdir@
|
||||||
top_srcdir = @top_srcdir@
|
top_srcdir = @top_srcdir@
|
||||||
top_builddir = ..
|
top_builddir = @top_builddir@
|
||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
|
|
||||||
prefix = @prefix@
|
prefix = @prefix@
|
||||||
|
@ -31,19 +35,17 @@ exec_prefix = @exec_prefix@
|
||||||
datadir = @datadir@
|
datadir = @datadir@
|
||||||
datarootdir = @datarootdir@
|
datarootdir = @datarootdir@
|
||||||
libdir = @libdir@
|
libdir = @libdir@
|
||||||
localedir = $(libdir)/locale
|
DATADIRNAME = @DATADIRNAME@
|
||||||
gnulocaledir = $(datadir)/locale
|
itlocaledir = $(prefix)/$(DATADIRNAME)/locale
|
||||||
gettextsrcdir = $(datadir)/glib-2.0/gettext/po
|
|
||||||
subdir = po
|
subdir = po
|
||||||
install_sh = @install_sh@
|
install_sh = @install_sh@
|
||||||
mkdir_p = @mkdir_p@
|
# Automake >= 1.8 provides @mkdir_p@.
|
||||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
# Until it can be supposed, use the safe fallback:
|
||||||
|
mkdir_p = $(install_sh) -d
|
||||||
|
|
||||||
INSTALL = @INSTALL@
|
INSTALL = @INSTALL@
|
||||||
INSTALL_DATA = @INSTALL_DATA@
|
INSTALL_DATA = @INSTALL_DATA@
|
||||||
|
|
||||||
CC = @CC@
|
|
||||||
GENCAT = @GENCAT@
|
|
||||||
GMSGFMT = @GMSGFMT@
|
GMSGFMT = @GMSGFMT@
|
||||||
MSGFMT = @MSGFMT@
|
MSGFMT = @MSGFMT@
|
||||||
XGETTEXT = @XGETTEXT@
|
XGETTEXT = @XGETTEXT@
|
||||||
|
@ -52,35 +54,30 @@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
|
||||||
MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist
|
MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist
|
||||||
GENPOT = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot
|
GENPOT = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot
|
||||||
|
|
||||||
DEFS = @DEFS@
|
ALL_LINGUAS = @ALL_LINGUAS@
|
||||||
CFLAGS = @CFLAGS@
|
|
||||||
CPPFLAGS = @CPPFLAGS@
|
|
||||||
|
|
||||||
INCLUDES = -I.. -I$(top_srcdir)/intl
|
PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; fi)
|
||||||
|
|
||||||
COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
|
USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep ^$$lang$$ $(srcdir)/LINGUAS`" -o -n "`echo $$ALINGUAS|grep ' ?$$lang ?'`"; then printf "$$lang "; fi; done; fi)
|
||||||
|
|
||||||
SOURCES =
|
USE_LINGUAS=$(shell if test -n "$(USER_LINGUAS)"; then LLINGUAS="$(USER_LINGUAS)"; else if test -n "$(PO_LINGUAS)"; then LLINGUAS="$(PO_LINGUAS)"; else LLINGUAS="$(ALL_LINGUAS)"; fi; fi; for lang in $$LLINGUAS; do printf "$$lang "; done)
|
||||||
POFILES = @POFILES@
|
|
||||||
GMOFILES = @GMOFILES@
|
POFILES=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.po "; done)
|
||||||
DISTFILES = ChangeLog Makefile.in.in POTFILES.in \
|
|
||||||
$(POFILES) $(GMOFILES) $(SOURCES)
|
DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(POFILES)
|
||||||
|
EXTRA_DISTFILES = POTFILES.skip Makevars LINGUAS
|
||||||
|
|
||||||
POTFILES = \
|
POTFILES = \
|
||||||
|
# This comment gets stripped out
|
||||||
|
|
||||||
CATALOGS = @CATALOGS@
|
CATALOGS=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.gmo "; done)
|
||||||
CATOBJEXT = @CATOBJEXT@
|
|
||||||
INSTOBJEXT = @INSTOBJEXT@
|
|
||||||
|
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
.SUFFIXES: .c .o .po .pox .gmo .mo .msg .cat
|
.SUFFIXES: .po .pox .gmo .mo .msg .cat
|
||||||
|
|
||||||
.c.o:
|
|
||||||
$(COMPILE) $<
|
|
||||||
|
|
||||||
.po.pox:
|
.po.pox:
|
||||||
$(MAKE) $(GETTEXT_PACKAGE).pot
|
$(MAKE) $(GETTEXT_PACKAGE).pot
|
||||||
$(MSGMERGE) $< $(top_builddir)/po/$(GETTEXT_PACKAGE).pot -o $*pox
|
$(MSGMERGE) $< $(GETTEXT_PACKAGE).pot -o $*.pox
|
||||||
|
|
||||||
.po.mo:
|
.po.mo:
|
||||||
$(MSGFMT) -o $@ $<
|
$(MSGFMT) -o $@ $<
|
||||||
|
@ -91,7 +88,7 @@ INSTOBJEXT = @INSTOBJEXT@
|
||||||
|
|
||||||
.po.cat:
|
.po.cat:
|
||||||
sed -f ../intl/po2msg.sed < $< > $*.msg \
|
sed -f ../intl/po2msg.sed < $< > $*.msg \
|
||||||
&& rm -f $@ && $(GENCAT) $@ $*.msg
|
&& rm -f $@ && gencat $@ $*.msg
|
||||||
|
|
||||||
|
|
||||||
all: all-@USE_NLS@
|
all: all-@USE_NLS@
|
||||||
|
@ -102,115 +99,91 @@ all-no:
|
||||||
$(GETTEXT_PACKAGE).pot: $(POTFILES)
|
$(GETTEXT_PACKAGE).pot: $(POTFILES)
|
||||||
$(GENPOT)
|
$(GENPOT)
|
||||||
|
|
||||||
install: install-exec install-data
|
install: install-data
|
||||||
install-exec:
|
|
||||||
install-data: install-data-@USE_NLS@
|
install-data: install-data-@USE_NLS@
|
||||||
install-data-no: all
|
install-data-no: all
|
||||||
install-data-yes: all
|
install-data-yes: all
|
||||||
if test -n "$(MKINSTALLDIRS)"; then \
|
$(mkdir_p) $(DESTDIR)$(itlocaledir)
|
||||||
$(MKINSTALLDIRS) $(DESTDIR)$(datadir); \
|
linguas="$(USE_LINGUAS)"; \
|
||||||
else \
|
for lang in $$linguas; do \
|
||||||
$(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(datadir); \
|
dir=$(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES; \
|
||||||
fi
|
$(mkdir_p) $$dir; \
|
||||||
@catalogs='$(CATALOGS)'; \
|
if test -r $$lang.gmo; then \
|
||||||
for cat in $$catalogs; do \
|
$(INSTALL_DATA) $$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \
|
||||||
cat=`basename $$cat`; \
|
echo "installing $$lang.gmo as $$dir/$(GETTEXT_PACKAGE).mo"; \
|
||||||
case "$$cat" in \
|
|
||||||
*.gmo) destdir=$(gnulocaledir);; \
|
|
||||||
*) destdir=$(localedir);; \
|
|
||||||
esac; \
|
|
||||||
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
|
||||||
dir=$(DESTDIR)$$destdir/$$lang/LC_MESSAGES; \
|
|
||||||
if test -n "$(MKINSTALLDIRS)"; then \
|
|
||||||
$(MKINSTALLDIRS) $$dir; \
|
|
||||||
else \
|
else \
|
||||||
$(SHELL) $(top_srcdir)/mkinstalldirs $$dir; \
|
$(INSTALL_DATA) $(srcdir)/$$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \
|
||||||
|
echo "installing $(srcdir)/$$lang.gmo as" \
|
||||||
|
"$$dir/$(GETTEXT_PACKAGE).mo"; \
|
||||||
fi; \
|
fi; \
|
||||||
if test -r $$cat; then \
|
if test -r $$lang.gmo.m; then \
|
||||||
$(INSTALL_DATA) $$cat $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
$(INSTALL_DATA) $$lang.gmo.m $$dir/$(GETTEXT_PACKAGE).mo.m; \
|
||||||
echo "installing $$cat as $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT)"; \
|
echo "installing $$lang.gmo.m as $$dir/$(GETTEXT_PACKAGE).mo.m"; \
|
||||||
else \
|
else \
|
||||||
$(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
if test -r $(srcdir)/$$lang.gmo.m ; then \
|
||||||
echo "installing $(srcdir)/$$cat as" \
|
$(INSTALL_DATA) $(srcdir)/$$lang.gmo.m \
|
||||||
"$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT)"; \
|
$$dir/$(GETTEXT_PACKAGE).mo.m; \
|
||||||
fi; \
|
echo "installing $(srcdir)/$$lang.gmo.m as" \
|
||||||
if test -r $$cat.m; then \
|
"$$dir/$(GETTEXT_PACKAGE).mo.m"; \
|
||||||
$(INSTALL_DATA) $$cat.m $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
|
||||||
echo "installing $$cat.m as $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m"; \
|
|
||||||
else \
|
|
||||||
if test -r $(srcdir)/$$cat.m ; then \
|
|
||||||
$(INSTALL_DATA) $(srcdir)/$$cat.m \
|
|
||||||
$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
|
||||||
echo "installing $(srcdir)/$$cat as" \
|
|
||||||
"$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m"; \
|
|
||||||
else \
|
else \
|
||||||
true; \
|
true; \
|
||||||
fi; \
|
fi; \
|
||||||
fi; \
|
fi; \
|
||||||
done
|
done
|
||||||
if test "$(PACKAGE)" = "glib"; then \
|
|
||||||
if test -n "$(MKINSTALLDIRS)"; then \
|
|
||||||
$(MKINSTALLDIRS) $(DESTDIR)$(gettextsrcdir); \
|
|
||||||
else \
|
|
||||||
$(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(gettextsrcdir); \
|
|
||||||
fi; \
|
|
||||||
$(INSTALL_DATA) $(srcdir)/Makefile.in.in \
|
|
||||||
$(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
|
|
||||||
else \
|
|
||||||
: ; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Define this as empty until I found a useful application.
|
|
||||||
installcheck:
|
|
||||||
|
|
||||||
uninstall:
|
|
||||||
catalogs='$(CATALOGS)'; \
|
|
||||||
for cat in $$catalogs; do \
|
|
||||||
cat=`basename $$cat`; \
|
|
||||||
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
|
||||||
rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
|
||||||
rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
|
||||||
rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
|
||||||
rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
|
||||||
done
|
|
||||||
if test "$(PACKAGE)" = "glib"; then \
|
|
||||||
rm -f $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
check: all
|
|
||||||
|
|
||||||
|
# Empty stubs to satisfy archaic automake needs
|
||||||
dvi info tags TAGS ID:
|
dvi info tags TAGS ID:
|
||||||
|
|
||||||
|
# Define this as empty until I found a useful application.
|
||||||
|
install-exec installcheck:
|
||||||
|
|
||||||
|
uninstall:
|
||||||
|
linguas="$(USE_LINGUAS)"; \
|
||||||
|
for lang in $$linguas; do \
|
||||||
|
rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \
|
||||||
|
rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \
|
||||||
|
done
|
||||||
|
|
||||||
|
check: all $(GETTEXT_PACKAGE).pot
|
||||||
|
rm -f missing notexist
|
||||||
|
srcdir=$(srcdir) $(INTLTOOL_UPDATE) -m
|
||||||
|
if [ -r missing -o -r notexist ]; then \
|
||||||
|
exit 1; \
|
||||||
|
fi
|
||||||
|
|
||||||
mostlyclean:
|
mostlyclean:
|
||||||
rm -f core core.* *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp
|
rm -f *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp
|
||||||
rm -fr *.o
|
|
||||||
rm -f .intltool-merge-cache
|
rm -f .intltool-merge-cache
|
||||||
|
|
||||||
clean: mostlyclean
|
clean: mostlyclean
|
||||||
|
|
||||||
distclean: clean
|
distclean: clean
|
||||||
rm -f Makefile Makefile.in POTFILES *.mo *.msg *.cat *.cat.m
|
rm -f Makefile Makefile.in POTFILES stamp-it
|
||||||
|
rm -f *.mo *.msg *.cat *.cat.m *.gmo
|
||||||
|
|
||||||
maintainer-clean: distclean
|
maintainer-clean: distclean
|
||||||
@echo "This command is intended for maintainers to use;"
|
@echo "This command is intended for maintainers to use;"
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
@echo "it deletes files that may require special tools to rebuild."
|
||||||
rm -f $(GMOFILES)
|
rm -f Makefile.in.in
|
||||||
|
|
||||||
distdir = ../$(GETTEXT_PACKAGE)-$(VERSION)/$(subdir)
|
distdir = ../$(PACKAGE)-$(VERSION)/$(subdir)
|
||||||
dist distdir: $(DISTFILES) $(GETTEXT_PACKAGE).pot
|
dist distdir: $(DISTFILES)
|
||||||
dists="$(DISTFILES)"; \
|
dists="$(DISTFILES)"; \
|
||||||
|
extra_dists="$(EXTRA_DISTFILES)"; \
|
||||||
|
for file in $$extra_dists; do \
|
||||||
|
test -f $(srcdir)/$$file && dists="$$dists $(srcdir)/$$file"; \
|
||||||
|
done; \
|
||||||
for file in $$dists; do \
|
for file in $$dists; do \
|
||||||
ln $(srcdir)/$$file $(distdir) 2> /dev/null \
|
test -f $$file || file="$(srcdir)/$$file"; \
|
||||||
|| cp -p $(srcdir)/$$file $(distdir); \
|
ln $$file $(distdir) 2> /dev/null \
|
||||||
|
|| cp -p $$file $(distdir); \
|
||||||
done
|
done
|
||||||
|
|
||||||
update-po: Makefile
|
update-po: Makefile
|
||||||
$(MAKE) $(GETTEXT_PACKAGE).pot
|
$(MAKE) $(GETTEXT_PACKAGE).pot
|
||||||
tmpdir=`pwd`; \
|
tmpdir=`pwd`; \
|
||||||
catalogs='$(CATALOGS)'; \
|
linguas="$(USE_LINGUAS)"; \
|
||||||
for cat in $$catalogs; do \
|
for lang in $$linguas; do \
|
||||||
cat=`basename $$cat`; \
|
|
||||||
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
|
||||||
echo "$$lang:"; \
|
echo "$$lang:"; \
|
||||||
result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \
|
result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \
|
||||||
if $$result; then \
|
if $$result; then \
|
||||||
|
@ -226,28 +199,20 @@ update-po: Makefile
|
||||||
fi; \
|
fi; \
|
||||||
fi; \
|
fi; \
|
||||||
else \
|
else \
|
||||||
echo "msgmerge for $$cat failed!"; \
|
echo "msgmerge for $$lang.gmo failed!"; \
|
||||||
rm -f $$tmpdir/$$lang.new.po; \
|
rm -f $$tmpdir/$$lang.new.po; \
|
||||||
fi; \
|
fi; \
|
||||||
done
|
done
|
||||||
|
|
||||||
# POTFILES is created from POTFILES.in by stripping comments, empty lines
|
Makefile POTFILES: stamp-it
|
||||||
# and Intltool tags (enclosed in square brackets), and appending a full
|
@if test ! -f $@; then \
|
||||||
# relative path to them
|
rm -f stamp-it; \
|
||||||
POTFILES: POTFILES.in
|
$(MAKE) stamp-it; \
|
||||||
( posrcprefix='$(top_srcdir)/'; \
|
fi
|
||||||
rm -f $@-t $@ \
|
|
||||||
&& (sed -e '/^#/d' \
|
|
||||||
-e 's/^[[].*] *//' \
|
|
||||||
-e '/^[ ]*$$/d' \
|
|
||||||
-e "s@^@ $$posrcprefix@" $(srcdir)/$@.in \
|
|
||||||
| sed -e '$$!s/$$/ \\/') > $@-t \
|
|
||||||
&& chmod a-w $@-t \
|
|
||||||
&& mv $@-t $@ )
|
|
||||||
|
|
||||||
Makefile: Makefile.in.in ../config.status POTFILES
|
stamp-it: Makefile.in.in $(top_builddir)/config.status POTFILES.in
|
||||||
cd .. \
|
cd $(top_builddir) \
|
||||||
&& CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \
|
&& CONFIG_FILES=$(subdir)/Makefile.in CONFIG_HEADERS= CONFIG_LINKS= \
|
||||||
$(SHELL) ./config.status
|
$(SHELL) ./config.status
|
||||||
|
|
||||||
# Tell versions [3.59,3.63) of GNU make not to export all variables.
|
# Tell versions [3.59,3.63) of GNU make not to export all variables.
|
||||||
|
|
|
@ -11,6 +11,11 @@
|
||||||
#
|
#
|
||||||
# - Modified by jacob berkman <jacob@ximian.com> to install
|
# - Modified by jacob berkman <jacob@ximian.com> to install
|
||||||
# Makefile.in.in and po2tbl.sed.in for use with glib-gettextize
|
# Makefile.in.in and po2tbl.sed.in for use with glib-gettextize
|
||||||
|
#
|
||||||
|
# - Modified by Rodney Dawes <dobey@novell.com> for use with intltool
|
||||||
|
#
|
||||||
|
# We have the following line for use by intltoolize:
|
||||||
|
# INTLTOOL_MAKEFILE
|
||||||
|
|
||||||
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@-tips
|
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@-tips
|
||||||
XGETTEXT_KEYWORDS=--keyword=_ --keyword=N_ --keyword=Q_:1g --keyword=C_:1c,2
|
XGETTEXT_KEYWORDS=--keyword=_ --keyword=N_ --keyword=Q_:1g --keyword=C_:1c,2
|
||||||
|
@ -19,11 +24,10 @@ PACKAGE = @PACKAGE@
|
||||||
VERSION = @VERSION@
|
VERSION = @VERSION@
|
||||||
|
|
||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
@SET_MAKE@
|
|
||||||
|
|
||||||
srcdir = @srcdir@
|
srcdir = @srcdir@
|
||||||
top_srcdir = @top_srcdir@
|
top_srcdir = @top_srcdir@
|
||||||
top_builddir = ..
|
top_builddir = @top_builddir@
|
||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
|
|
||||||
prefix = @prefix@
|
prefix = @prefix@
|
||||||
|
@ -31,19 +35,17 @@ exec_prefix = @exec_prefix@
|
||||||
datadir = @datadir@
|
datadir = @datadir@
|
||||||
datarootdir = @datarootdir@
|
datarootdir = @datarootdir@
|
||||||
libdir = @libdir@
|
libdir = @libdir@
|
||||||
localedir = $(libdir)/locale
|
DATADIRNAME = @DATADIRNAME@
|
||||||
gnulocaledir = $(datadir)/locale
|
itlocaledir = $(prefix)/$(DATADIRNAME)/locale
|
||||||
gettextsrcdir = $(datadir)/glib-2.0/gettext/po
|
|
||||||
subdir = po
|
subdir = po
|
||||||
install_sh = @install_sh@
|
install_sh = @install_sh@
|
||||||
mkdir_p = @mkdir_p@
|
# Automake >= 1.8 provides @mkdir_p@.
|
||||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
# Until it can be supposed, use the safe fallback:
|
||||||
|
mkdir_p = $(install_sh) -d
|
||||||
|
|
||||||
INSTALL = @INSTALL@
|
INSTALL = @INSTALL@
|
||||||
INSTALL_DATA = @INSTALL_DATA@
|
INSTALL_DATA = @INSTALL_DATA@
|
||||||
|
|
||||||
CC = @CC@
|
|
||||||
GENCAT = @GENCAT@
|
|
||||||
GMSGFMT = @GMSGFMT@
|
GMSGFMT = @GMSGFMT@
|
||||||
MSGFMT = @MSGFMT@
|
MSGFMT = @MSGFMT@
|
||||||
XGETTEXT = @XGETTEXT@
|
XGETTEXT = @XGETTEXT@
|
||||||
|
@ -52,35 +54,30 @@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
|
||||||
MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist
|
MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist
|
||||||
GENPOT = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot
|
GENPOT = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot
|
||||||
|
|
||||||
DEFS = @DEFS@
|
ALL_LINGUAS = @ALL_LINGUAS@
|
||||||
CFLAGS = @CFLAGS@
|
|
||||||
CPPFLAGS = @CPPFLAGS@
|
|
||||||
|
|
||||||
INCLUDES = -I.. -I$(top_srcdir)/intl
|
PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; fi)
|
||||||
|
|
||||||
COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
|
USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep ^$$lang$$ $(srcdir)/LINGUAS`" -o -n "`echo $$ALINGUAS|grep ' ?$$lang ?'`"; then printf "$$lang "; fi; done; fi)
|
||||||
|
|
||||||
SOURCES =
|
USE_LINGUAS=$(shell if test -n "$(USER_LINGUAS)"; then LLINGUAS="$(USER_LINGUAS)"; else if test -n "$(PO_LINGUAS)"; then LLINGUAS="$(PO_LINGUAS)"; else LLINGUAS="$(ALL_LINGUAS)"; fi; fi; for lang in $$LLINGUAS; do printf "$$lang "; done)
|
||||||
POFILES = @POFILES@
|
|
||||||
GMOFILES = @GMOFILES@
|
POFILES=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.po "; done)
|
||||||
DISTFILES = ChangeLog Makefile.in.in POTFILES.in \
|
|
||||||
$(POFILES) $(GMOFILES) $(SOURCES)
|
DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(POFILES)
|
||||||
|
EXTRA_DISTFILES = POTFILES.skip Makevars LINGUAS
|
||||||
|
|
||||||
POTFILES = \
|
POTFILES = \
|
||||||
|
# This comment gets stripped out
|
||||||
|
|
||||||
CATALOGS = @CATALOGS@
|
CATALOGS=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.gmo "; done)
|
||||||
CATOBJEXT = @CATOBJEXT@
|
|
||||||
INSTOBJEXT = @INSTOBJEXT@
|
|
||||||
|
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
.SUFFIXES: .c .o .po .pox .gmo .mo .msg .cat
|
.SUFFIXES: .po .pox .gmo .mo .msg .cat
|
||||||
|
|
||||||
.c.o:
|
|
||||||
$(COMPILE) $<
|
|
||||||
|
|
||||||
.po.pox:
|
.po.pox:
|
||||||
$(MAKE) $(GETTEXT_PACKAGE).pot
|
$(MAKE) $(GETTEXT_PACKAGE).pot
|
||||||
$(MSGMERGE) $< $(top_builddir)/po/$(GETTEXT_PACKAGE).pot -o $*pox
|
$(MSGMERGE) $< $(GETTEXT_PACKAGE).pot -o $*.pox
|
||||||
|
|
||||||
.po.mo:
|
.po.mo:
|
||||||
$(MSGFMT) -o $@ $<
|
$(MSGFMT) -o $@ $<
|
||||||
|
@ -91,7 +88,7 @@ INSTOBJEXT = @INSTOBJEXT@
|
||||||
|
|
||||||
.po.cat:
|
.po.cat:
|
||||||
sed -f ../intl/po2msg.sed < $< > $*.msg \
|
sed -f ../intl/po2msg.sed < $< > $*.msg \
|
||||||
&& rm -f $@ && $(GENCAT) $@ $*.msg
|
&& rm -f $@ && gencat $@ $*.msg
|
||||||
|
|
||||||
|
|
||||||
all: all-@USE_NLS@
|
all: all-@USE_NLS@
|
||||||
|
@ -102,115 +99,91 @@ all-no:
|
||||||
$(GETTEXT_PACKAGE).pot: $(POTFILES)
|
$(GETTEXT_PACKAGE).pot: $(POTFILES)
|
||||||
$(GENPOT)
|
$(GENPOT)
|
||||||
|
|
||||||
install: install-exec install-data
|
install: install-data
|
||||||
install-exec:
|
|
||||||
install-data: install-data-@USE_NLS@
|
install-data: install-data-@USE_NLS@
|
||||||
install-data-no: all
|
install-data-no: all
|
||||||
install-data-yes: all
|
install-data-yes: all
|
||||||
if test -n "$(MKINSTALLDIRS)"; then \
|
$(mkdir_p) $(DESTDIR)$(itlocaledir)
|
||||||
$(MKINSTALLDIRS) $(DESTDIR)$(datadir); \
|
linguas="$(USE_LINGUAS)"; \
|
||||||
else \
|
for lang in $$linguas; do \
|
||||||
$(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(datadir); \
|
dir=$(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES; \
|
||||||
fi
|
$(mkdir_p) $$dir; \
|
||||||
@catalogs='$(CATALOGS)'; \
|
if test -r $$lang.gmo; then \
|
||||||
for cat in $$catalogs; do \
|
$(INSTALL_DATA) $$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \
|
||||||
cat=`basename $$cat`; \
|
echo "installing $$lang.gmo as $$dir/$(GETTEXT_PACKAGE).mo"; \
|
||||||
case "$$cat" in \
|
|
||||||
*.gmo) destdir=$(gnulocaledir);; \
|
|
||||||
*) destdir=$(localedir);; \
|
|
||||||
esac; \
|
|
||||||
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
|
||||||
dir=$(DESTDIR)$$destdir/$$lang/LC_MESSAGES; \
|
|
||||||
if test -n "$(MKINSTALLDIRS)"; then \
|
|
||||||
$(MKINSTALLDIRS) $$dir; \
|
|
||||||
else \
|
else \
|
||||||
$(SHELL) $(top_srcdir)/mkinstalldirs $$dir; \
|
$(INSTALL_DATA) $(srcdir)/$$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \
|
||||||
|
echo "installing $(srcdir)/$$lang.gmo as" \
|
||||||
|
"$$dir/$(GETTEXT_PACKAGE).mo"; \
|
||||||
fi; \
|
fi; \
|
||||||
if test -r $$cat; then \
|
if test -r $$lang.gmo.m; then \
|
||||||
$(INSTALL_DATA) $$cat $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
$(INSTALL_DATA) $$lang.gmo.m $$dir/$(GETTEXT_PACKAGE).mo.m; \
|
||||||
echo "installing $$cat as $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT)"; \
|
echo "installing $$lang.gmo.m as $$dir/$(GETTEXT_PACKAGE).mo.m"; \
|
||||||
else \
|
else \
|
||||||
$(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
if test -r $(srcdir)/$$lang.gmo.m ; then \
|
||||||
echo "installing $(srcdir)/$$cat as" \
|
$(INSTALL_DATA) $(srcdir)/$$lang.gmo.m \
|
||||||
"$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT)"; \
|
$$dir/$(GETTEXT_PACKAGE).mo.m; \
|
||||||
fi; \
|
echo "installing $(srcdir)/$$lang.gmo.m as" \
|
||||||
if test -r $$cat.m; then \
|
"$$dir/$(GETTEXT_PACKAGE).mo.m"; \
|
||||||
$(INSTALL_DATA) $$cat.m $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
|
||||||
echo "installing $$cat.m as $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m"; \
|
|
||||||
else \
|
|
||||||
if test -r $(srcdir)/$$cat.m ; then \
|
|
||||||
$(INSTALL_DATA) $(srcdir)/$$cat.m \
|
|
||||||
$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
|
||||||
echo "installing $(srcdir)/$$cat as" \
|
|
||||||
"$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m"; \
|
|
||||||
else \
|
else \
|
||||||
true; \
|
true; \
|
||||||
fi; \
|
fi; \
|
||||||
fi; \
|
fi; \
|
||||||
done
|
done
|
||||||
if test "$(PACKAGE)" = "glib"; then \
|
|
||||||
if test -n "$(MKINSTALLDIRS)"; then \
|
|
||||||
$(MKINSTALLDIRS) $(DESTDIR)$(gettextsrcdir); \
|
|
||||||
else \
|
|
||||||
$(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(gettextsrcdir); \
|
|
||||||
fi; \
|
|
||||||
$(INSTALL_DATA) $(srcdir)/Makefile.in.in \
|
|
||||||
$(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
|
|
||||||
else \
|
|
||||||
: ; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Define this as empty until I found a useful application.
|
|
||||||
installcheck:
|
|
||||||
|
|
||||||
uninstall:
|
|
||||||
catalogs='$(CATALOGS)'; \
|
|
||||||
for cat in $$catalogs; do \
|
|
||||||
cat=`basename $$cat`; \
|
|
||||||
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
|
||||||
rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
|
||||||
rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
|
||||||
rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
|
|
||||||
rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
|
|
||||||
done
|
|
||||||
if test "$(PACKAGE)" = "glib"; then \
|
|
||||||
rm -f $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
check: all
|
|
||||||
|
|
||||||
|
# Empty stubs to satisfy archaic automake needs
|
||||||
dvi info tags TAGS ID:
|
dvi info tags TAGS ID:
|
||||||
|
|
||||||
|
# Define this as empty until I found a useful application.
|
||||||
|
install-exec installcheck:
|
||||||
|
|
||||||
|
uninstall:
|
||||||
|
linguas="$(USE_LINGUAS)"; \
|
||||||
|
for lang in $$linguas; do \
|
||||||
|
rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \
|
||||||
|
rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \
|
||||||
|
done
|
||||||
|
|
||||||
|
check: all $(GETTEXT_PACKAGE).pot
|
||||||
|
rm -f missing notexist
|
||||||
|
srcdir=$(srcdir) $(INTLTOOL_UPDATE) -m
|
||||||
|
if [ -r missing -o -r notexist ]; then \
|
||||||
|
exit 1; \
|
||||||
|
fi
|
||||||
|
|
||||||
mostlyclean:
|
mostlyclean:
|
||||||
rm -f core core.* *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp
|
rm -f *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp
|
||||||
rm -fr *.o
|
|
||||||
rm -f .intltool-merge-cache
|
rm -f .intltool-merge-cache
|
||||||
|
|
||||||
clean: mostlyclean
|
clean: mostlyclean
|
||||||
|
|
||||||
distclean: clean
|
distclean: clean
|
||||||
rm -f Makefile Makefile.in POTFILES *.mo *.msg *.cat *.cat.m
|
rm -f Makefile Makefile.in POTFILES stamp-it
|
||||||
|
rm -f *.mo *.msg *.cat *.cat.m *.gmo
|
||||||
|
|
||||||
maintainer-clean: distclean
|
maintainer-clean: distclean
|
||||||
@echo "This command is intended for maintainers to use;"
|
@echo "This command is intended for maintainers to use;"
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
@echo "it deletes files that may require special tools to rebuild."
|
||||||
rm -f $(GMOFILES)
|
rm -f Makefile.in.in
|
||||||
|
|
||||||
distdir = ../$(GETTEXT_PACKAGE)-$(VERSION)/$(subdir)
|
distdir = ../$(PACKAGE)-$(VERSION)/$(subdir)
|
||||||
dist distdir: $(DISTFILES) $(GETTEXT_PACKAGE).pot
|
dist distdir: $(DISTFILES)
|
||||||
dists="$(DISTFILES)"; \
|
dists="$(DISTFILES)"; \
|
||||||
|
extra_dists="$(EXTRA_DISTFILES)"; \
|
||||||
|
for file in $$extra_dists; do \
|
||||||
|
test -f $(srcdir)/$$file && dists="$$dists $(srcdir)/$$file"; \
|
||||||
|
done; \
|
||||||
for file in $$dists; do \
|
for file in $$dists; do \
|
||||||
ln $(srcdir)/$$file $(distdir) 2> /dev/null \
|
test -f $$file || file="$(srcdir)/$$file"; \
|
||||||
|| cp -p $(srcdir)/$$file $(distdir); \
|
ln $$file $(distdir) 2> /dev/null \
|
||||||
|
|| cp -p $$file $(distdir); \
|
||||||
done
|
done
|
||||||
|
|
||||||
update-po: Makefile
|
update-po: Makefile
|
||||||
$(MAKE) $(GETTEXT_PACKAGE).pot
|
$(MAKE) $(GETTEXT_PACKAGE).pot
|
||||||
tmpdir=`pwd`; \
|
tmpdir=`pwd`; \
|
||||||
catalogs='$(CATALOGS)'; \
|
linguas="$(USE_LINGUAS)"; \
|
||||||
for cat in $$catalogs; do \
|
for lang in $$linguas; do \
|
||||||
cat=`basename $$cat`; \
|
|
||||||
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
|
||||||
echo "$$lang:"; \
|
echo "$$lang:"; \
|
||||||
result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \
|
result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \
|
||||||
if $$result; then \
|
if $$result; then \
|
||||||
|
@ -226,28 +199,20 @@ update-po: Makefile
|
||||||
fi; \
|
fi; \
|
||||||
fi; \
|
fi; \
|
||||||
else \
|
else \
|
||||||
echo "msgmerge for $$cat failed!"; \
|
echo "msgmerge for $$lang.gmo failed!"; \
|
||||||
rm -f $$tmpdir/$$lang.new.po; \
|
rm -f $$tmpdir/$$lang.new.po; \
|
||||||
fi; \
|
fi; \
|
||||||
done
|
done
|
||||||
|
|
||||||
# POTFILES is created from POTFILES.in by stripping comments, empty lines
|
Makefile POTFILES: stamp-it
|
||||||
# and Intltool tags (enclosed in square brackets), and appending a full
|
@if test ! -f $@; then \
|
||||||
# relative path to them
|
rm -f stamp-it; \
|
||||||
POTFILES: POTFILES.in
|
$(MAKE) stamp-it; \
|
||||||
( posrcprefix='$(top_srcdir)/'; \
|
fi
|
||||||
rm -f $@-t $@ \
|
|
||||||
&& (sed -e '/^#/d' \
|
|
||||||
-e 's/^[[].*] *//' \
|
|
||||||
-e '/^[ ]*$$/d' \
|
|
||||||
-e "s@^@ $$posrcprefix@" $(srcdir)/$@.in \
|
|
||||||
| sed -e '$$!s/$$/ \\/') > $@-t \
|
|
||||||
&& chmod a-w $@-t \
|
|
||||||
&& mv $@-t $@ )
|
|
||||||
|
|
||||||
Makefile: Makefile.in.in ../config.status POTFILES
|
stamp-it: Makefile.in.in $(top_builddir)/config.status POTFILES.in
|
||||||
cd .. \
|
cd $(top_builddir) \
|
||||||
&& CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \
|
&& CONFIG_FILES=$(subdir)/Makefile.in CONFIG_HEADERS= CONFIG_LINKS= \
|
||||||
$(SHELL) ./config.status
|
$(SHELL) ./config.status
|
||||||
|
|
||||||
# Tell versions [3.59,3.63) of GNU make not to export all variables.
|
# Tell versions [3.59,3.63) of GNU make not to export all variables.
|
||||||
|
|
Loading…
Reference in New Issue