version requirement possibly encoded in the Build-Depends field and make
sure that the generated dependency is at least as strict as this one.
+ [ Guillem Jover ]
+ * Ignore the man pages when building without NLS support. Closes: #457673
+
[ Updated dpkg translations ]
* Swedish (Peter Karlsson)
* Spanish (Javier Fernández-Sanguino Peña). Closes: #456984
+2007-12-24 Guillem Jover <guillem@debian.org>
+
+ * Makefile.am (all-local): Rename to ...
+ (all-local-yes): ... this.
+ (clean-local): Rename to ...
+ (clean-local-yes): ... this.
+ (install-data-local): Rename to ...
+ (install-data-local-yes): ... this.
+ (uninstall-local): Rename to ...
+ (uninstall-local-yes): ... this.
+ (all-local, all-local-no, clean-local, clean-local-no): New targets.
+ (install-data-local, install-data-local-no): Likewise.
+ (uninstall-local, uninstall-local-no): Likewise.
+
2007-12-22 Helge Kreutzmann <debian@helgefjell.de>
* po/de.po: Updated to 1347t0f36u.
## Process this file with automake to produce Makefile.in
-all-local: man.stamp
+all-local: all-local-@USE_NLS@
+
+all-local-no:
+all-local-yes: man.stamp
# FIXME: Use a stamp file until po4a supports them internally.
man.stamp:
$(srcdir)/po/po4a.cfg
touch $@
-clean-local:
+clean-local: clean-local-@USE_NLS@
+
+clean-local-no:
+clean-local-yes:
po4a --rm-backups --rm-translations --variable srcdir=$(srcdir) \
$(srcdir)/po/po4a.cfg
rm -f man.stamp
# Extract the list of languages from the po4a config file.
LINGUAS = $(shell sed -ne 's/^.*\[po4a_langs\] \(.*\)$$/\1/p' $(srcdir)/po/po4a.cfg)
-install-data-local:
+install-data-local: install-data-local-@USE_NLS@
+
+install-data-local-no:
+install-data-local-yes:
for lang in $(LINGUAS); do \
if [ -d $(srcdir)/$$lang ]; then \
files=$$(echo $(srcdir)/$$lang/*.[1-9]); \
fi \
done
-uninstall-local:
+uninstall-local: uninstall-local-@USE_NLS@
+
+uninstall-local-no:
+uninstall-local-yes:
for lang in $(LINGUAS); do \
if [ -d $(srcdir)/$$lang ]; then \
files=$$(echo $(srcdir)/$$lang/*.[1-9]); \