mirror of
https://git.tukaani.org/xz.git
synced 2025-09-27 21:08:18 +00:00
The dependency on po4a is optional. It's never required to install the translated man pages when xz is built from a release tarball. If po4a is missing when building from xz.git, the translated man pages won't be generated but otherwise the build will work normally. The translations are only updated automatically by autogen.sh and by "make mydist". This makes it easy to keep po4a as an optional dependency and ensures that I won't forget to put updated translations to a release tarball. The translated man pages aren't installed if --disable-nls is used. The installation of translated man pages abuses Automake internals by calling "install-man" with redefined dist_man_MANS and man_MANS. This makes the hairy script code slightly less hairy. If it breaks some day, this code needs to be fixed; don't blame Automake developers. Also, this adds more quotes to the existing shell script code in the Makefile.am "-hook"s.
90 lines
2.4 KiB
Makefile
90 lines
2.4 KiB
Makefile
##
|
|
## Author: Lasse Collin
|
|
##
|
|
## This file has been put into the public domain.
|
|
## You can do whatever you want with this file.
|
|
##
|
|
|
|
nodist_bin_SCRIPTS = xzdiff xzgrep xzmore xzless
|
|
dist_man_MANS = xzdiff.1 xzgrep.1 xzmore.1 xzless.1
|
|
|
|
links = \
|
|
xzdiff-xzcmp \
|
|
xzgrep-xzegrep \
|
|
xzgrep-xzfgrep
|
|
|
|
if COND_LZMALINKS
|
|
links += \
|
|
xzdiff-lzdiff \
|
|
xzdiff-lzcmp \
|
|
xzgrep-lzgrep \
|
|
xzgrep-lzegrep \
|
|
xzgrep-lzfgrep \
|
|
xzmore-lzmore \
|
|
xzless-lzless
|
|
endif
|
|
|
|
install-exec-hook:
|
|
cd "$(DESTDIR)$(bindir)" && \
|
|
for pair in $(links); do \
|
|
target=`echo $$pair | sed 's/-.*$$//' | sed '$(transform)'` && \
|
|
link=`echo $$pair | sed 's/^.*-//' | sed '$(transform)'` && \
|
|
rm -f "$$link" && \
|
|
$(LN_S) "$$target" "$$link"; \
|
|
done
|
|
|
|
# The installation of translated man pages abuses Automake internals
|
|
# by calling "install-man" with redefined dist_man_MANS and man_MANS.
|
|
# If this breaks some day, don't blame Automake developers.
|
|
install-data-hook:
|
|
languages= ; \
|
|
if test "$(USE_NLS)" = yes && test -d "$(top_srcdir)/po4a/man"; then \
|
|
languages=`ls "$(top_srcdir)/po4a/man"`; \
|
|
fi; \
|
|
for lang in $$languages; do \
|
|
mans= ; \
|
|
for man in $(dist_man_MANS); do \
|
|
man="$(top_srcdir)/po4a/man/$$lang/$$man" ; \
|
|
if test -f "$$man"; then \
|
|
mans="$$mans $$man"; \
|
|
fi; \
|
|
done; \
|
|
$(MAKE) dist_man_MANS="$$mans" man_MANS= \
|
|
mandir="$(mandir)/$$lang" install-man; \
|
|
done; \
|
|
for lang in . $$languages; do \
|
|
for pair in $(links); do \
|
|
target=`echo $$pair | sed 's/-.*$$//' \
|
|
| sed '$(transform)'` && \
|
|
link=`echo $$pair | sed 's/^.*-//' \
|
|
| sed '$(transform)'` && \
|
|
man1dir="$(DESTDIR)$(mandir)/$$lang/man1" && \
|
|
if test -f "$$man1dir/$$target.1"; then ( \
|
|
cd "$$man1dir" && \
|
|
rm -f "$$link.1" && \
|
|
$(LN_S) "$$target.1" "$$link.1" \
|
|
); fi; \
|
|
done; \
|
|
done
|
|
|
|
uninstall-hook:
|
|
cd "$(DESTDIR)$(bindir)" && \
|
|
for pair in $(links); do \
|
|
link=`echo $$pair | sed 's/^.*-//' | sed '$(transform)'` && \
|
|
rm -f "$$link"; \
|
|
done
|
|
languages= ; \
|
|
if test "$(USE_NLS)" = yes && test -d "$(top_srcdir)/po4a/man"; then \
|
|
languages=`ls "$(top_srcdir)/po4a/man"`; \
|
|
fi; \
|
|
for lang in . $$languages; do \
|
|
for pair in $(links); do \
|
|
target=`echo $$pair | sed 's/-.*$$//' \
|
|
| sed '$(transform)'` && \
|
|
link=`echo $$pair | sed 's/^.*-//' \
|
|
| sed '$(transform)'` && \
|
|
rm -f "$(DESTDIR)$(mandir)/$$lang/man1/$$target.1" \
|
|
"$(DESTDIR)$(mandir)/$$lang/man1/$$link.1"; \
|
|
done; \
|
|
done
|