X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/f45fd56b58a71f2827eb8b4f96333782d84b7b63..a98b6615254f8f7251d43c52de8f1f605c821ed7:/buildlib/po4a_manpage.mak diff --git a/buildlib/po4a_manpage.mak b/buildlib/po4a_manpage.mak index 6eec9d031..1dedd0dcd 100644 --- a/buildlib/po4a_manpage.mak +++ b/buildlib/po4a_manpage.mak @@ -11,12 +11,12 @@ # generate a list of accepted man page translations SOURCE = $(patsubst %.xml,%,$(wildcard *.$(LC).?.xml)) -INCLUDES = apt.ent +INCLUDES = apt.ent apt-verbatim.ent # Do not use XMLTO, build the manpages directly with XSLTPROC ifdef XSLTPROC -STYLESHEET=../manpage-style.xsl +STYLESHEET=manpage-style.xsl LOCAL := po4a-manpage-$(firstword $(SOURCE)) $(LOCAL)-LIST := $(SOURCE) @@ -25,16 +25,23 @@ $(LOCAL)-LIST := $(SOURCE) doc: $($(LOCAL)-LIST) veryclean: veryclean/$(LOCAL) -$($(LOCAL)-LIST) :: % : %.xml $(INCLUDES) +apt-verbatim.ent: ../apt-verbatim.ent + cp ../apt-verbatim.ent . + +manpage-style.xsl: ../manpage-style.xsl + sed "// i\ +" ../manpage-style.xsl > manpage-style.xsl + +$($(LOCAL)-LIST) :: % : %.xml $(STYLESHEET) $(INCLUDES) echo Creating man page $@ - $(XSLTPROC) -o $@ $(STYLESHEET) $< # why xsltproc doesn't respect the -o flag here??? + $(XSLTPROC) -o $@ $(STYLESHEET) $< || exit 200 # why xsltproc doesn't respect the -o flag here??? test -f $(subst .$(LC),,$@) || echo FIXME: xsltproc respect the -o flag now, workaround can be removed mv -f $(subst .$(LC),,$@) $@ # Clean rule .PHONY: veryclean/$(LOCAL) veryclean/$(LOCAL): - -rm -rf $($(@F)-LIST) apt.ent apt.$(LC).8 \ + -rm -rf $($(@F)-LIST) apt.ent apt-verbatim.ent apt.$(LC).8 \ $(addsuffix .xml,$($(@F)-LIST)) \ offline.$(LC).sgml guide.$(LC).sgml