]> git.saurik.com Git - apt.git/blob - buildlib/po4a_manpage.mak
apply the correct metadata (package, version, mail) to all pot and po files
[apt.git] / buildlib / po4a_manpage.mak
1 # -*- make -*-
2
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
6
7 # Input
8 # $(LC) - The language code of the translation
9
10 # See defaults.mak for information about LOCAL
11
12 # generate a list of accepted man page translations
13 SOURCE = $(patsubst %.xml,%,$(wildcard *.$(LC).?.xml))
14 INCLUDES = apt.ent apt-verbatim.ent
15
16 # Do not use XMLTO, build the manpages directly with XSLTPROC
17 ifdef XSLTPROC
18
19 STYLESHEET=manpage-style.xsl
20
21 LOCAL := po4a-manpage-$(firstword $(SOURCE))
22 $(LOCAL)-LIST := $(SOURCE)
23
24 # Install generation hooks
25 doc: $($(LOCAL)-LIST)
26 veryclean: veryclean/$(LOCAL)
27
28 apt-verbatim.ent: ../apt-verbatim.ent
29 cp ../apt-verbatim.ent .
30
31 manpage-style.xsl: ../manpage-style.xsl
32 sed "/<!-- LANGUAGE -->/ i\
33 <xsl:param name=\"l10n.gentext.default.language\" select=\"'$(LC)'\" />" ../manpage-style.xsl > manpage-style.xsl
34
35 $($(LOCAL)-LIST) :: % : %.xml $(STYLESHEET) $(INCLUDES)
36 echo Creating man page $@
37 $(XSLTPROC) -o $@ $(STYLESHEET) $< || exit 200 # why xsltproc doesn't respect the -o flag here???
38 test -f $(subst .$(LC),,$@) || echo FIXME: xsltproc respect the -o flag now, workaround can be removed
39 mv -f $(subst .$(LC),,$@) $@
40
41 # Clean rule
42 .PHONY: veryclean/$(LOCAL)
43 veryclean/$(LOCAL):
44 -rm -rf $($(@F)-LIST) apt.ent apt-verbatim.ent apt.$(LC).8 \
45 $(addsuffix .xml,$($(@F)-LIST)) \
46 offline.$(LC).sgml guide.$(LC).sgml
47
48 HAVE_PO4A=yes
49 endif
50
51 # take care of the rest
52 SOURCE := $(SOURCE) $(wildcard apt.$(LC).8)
53 INCLUDES :=
54
55 ifndef HAVE_PO4A
56 # Strip from the source list any man pages we dont have compiled already
57 SOURCE := $(wildcard $(SOURCE))
58 endif
59
60 # Chain to the manpage rule
61 ifneq ($(words $(SOURCE)),0)
62 include $(MANPAGE_H)
63 endif
64
65 # Debian Doc SGML Documents
66 SOURCE := $(wildcard *.$(LC).sgml)
67 DEBIANDOC_HTML_OPTIONS=-l $(LC).UTF-8
68 include $(DEBIANDOC_H)