3 # This handles man pages with po4a. We convert to the respective
4 # output in the source directory then copy over to the final dest. This
5 # means po4a is only needed if compiling from bzr
8 # $(LC) - The language code of the translation
10 # See defaults.mak for information about LOCAL
12 # generate a list of accepted man page translations
13 SOURCE = $(patsubst %.xml,%,$(wildcard *.$(LC).?.xml))
14 INCLUDES = apt.ent apt-verbatim.ent apt-vendor.ent
21 # Do not use XMLTO, build the manpages directly with XSLTPROC
24 STYLESHEET=manpage-style.xsl
26 LOCAL := po4a-manpage-$(firstword $(SOURCE))
27 $(LOCAL)-LIST := $(SOURCE)
29 # Install generation hooks
30 manpages: $($(LOCAL)-LIST)
32 veryclean: veryclean/$(LOCAL)
34 apt-verbatim.ent: ../apt-verbatim.ent
35 cp -a ../apt-verbatim.ent .
37 apt-vendor.ent: ../apt-vendor.ent
38 cp -a ../apt-vendor.ent .
40 $($(LOCAL)-LIST) :: % : %.xml $(STYLESHEET) $(INCLUDES)
41 echo Creating man page $@
43 --stringparam l10n.gentext.default.language $(LC) \
44 -o $@ $(STYLESHEET) $< || exit 200 # why xsltproc doesn't respect the -o flag here???
45 test -f $(subst .$(LC),,$@) || echo 'FIXME: xsltproc respects the -o flag now, workaround can be removed'
46 mv -f $(subst .$(LC),,$@) $@
49 .PHONY: clean/$(LOCAL) veryclean/$(LOCAL)
51 rm -f $($(@F)-LIST) apt.ent apt-verbatim.ent
53 # we are nuking the directory we are working in as it is auto-generated
54 rm -rf $(shell readlink -f .)
59 # take care of the rest
60 SOURCE := $(SOURCE) $(wildcard apt.$(LC).8)
64 # Strip from the source list any man pages we dont have compiled already
65 SOURCE := $(wildcard $(SOURCE))
68 # Chain to the manpage rule
69 ifneq ($(words $(SOURCE)),0)
73 # DocBook XML Documents
74 SOURCE := $(wildcard *.$(LC).dbk)