# automake doesn't play nicely with DocBook :( SUBDIRS=images EXTRA_DIST=aptitude.xml manpage.xml fixman LANGCODE=fr MANPAGE=aptitude.$(LANGCODE).8 IMAGES = $(wildcard images/*.png) # Put documentation in /usr/share/doc/aptitude (by default) docdir=$(datadir)/doc/$(PACKAGE) # Automake automagically distributes README without asking.. README=README.$(LANGCODE) all-local: doc-stamp clean-local: -rm -fr output-html/ output-txt/ output-man/ -rm -f doc-stamp doc-css-stamp doc-html-stamp doc-txt-stamp doc-man-stamp -rm -fr $(MANPAGE) $(README) *.tmp man_MANS=$(MANPAGE) install-data-hook: $(mkinstalldirs) $(DESTDIR)$(docdir)/html/$(LANGCODE)/images $(INSTALL_DATA) output-html/*.html output-html/*.css $(DESTDIR)$(docdir)/html/$(LANGCODE) $(INSTALL_DATA) output-html/images/* $(DESTDIR)$(docdir)/html/$(LANGCODE)/images $(INSTALL_DATA) README.$(LANGCODE) $(DESTDIR)$(pkgdatadir)/README.$(LANGCODE) doc-stamp: doc-html-stamp doc-css-stamp $(README) $(MANPAGE) touch doc-stamp $(MANPAGE): aptitude.xml manpage.xml $(srcdir)/../aptitude-man.xsl -rm -fr output-man xsltproc -o output-man/aptitude.8 $(srcdir)/../aptitude-man.xsl $(srcdir)/aptitude.xml mv output-man/aptitude.8 $(MANPAGE) /bin/bash $(srcdir)/fixman $(README): aptitude.xml manpage.xml $(srcdir)/../aptitude-txt.xsl $(srcdir)/../aptitude-common.xsl $(srcdir)/../aptitude-txt.style -rm -fr output-txt/ xsltproc -o output-txt/index.html $(srcdir)/../aptitude-txt.xsl $(srcdir)/aptitude.xml html2text -width 80 -ascii -nobs -rcfile $(srcdir)/../aptitude-txt.style output-txt/index.html | sed 's/—/--/g' > $(README) doc-css-stamp: doc-html-stamp $(srcdir)/../aptitude.css rm -f output-html/aptitude.css cp $(srcdir)/../aptitude.css output-html/ touch doc-css-stamp doc-html-stamp: aptitude.xml manpage.xml $(srcdir)/../aptitude-html.xsl $(srcdir)/../aptitude-common.xsl $(IMAGES) -rm -fr output-html/ xsltproc -o output-html/ $(srcdir)/../aptitude-html.xsl $(srcdir)/aptitude.xml mkdir output-html/images/ ln -f $(srcdir)/images/*.png output-html/images/ for x in caution important note tip warning; do ln -s /usr/share/xml/docbook/stylesheet/nwalsh/images/$$x.png output-html/images/; done for x in home next prev up; do ln -s /usr/share/xml/docbook/stylesheet/nwalsh/images/$$x.gif output-html/images/; done touch doc-html-stamp