X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=doc%2Fautomake.mk;h=951c6dbaa95bc8a835bcc0358e930cfdf5fd857b;hb=facb4a1ad3c9e8b2cdf55824680eed2afb91aebe;hp=28866ca2e9196eb46143842cb7b1d3a95ba24483;hpb=61ef840f157fe4aba26d3e81afa2fce16282dc66;p=pspp diff --git a/doc/automake.mk b/doc/automake.mk index 28866ca2e9..951c6dbaa9 100644 --- a/doc/automake.mk +++ b/doc/automake.mk @@ -1,3 +1,19 @@ +## PSPP - a program for statistical analysis. +## Copyright (C) 2019 Free Software Foundation, Inc. +## +## This program is free software: you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation, either version 3 of the License, or +## (at your option) any later version. +## +## This program is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with this program. If not, see . + ## Process this file with automake to produce Makefile.in -*- makefile -*- info_TEXINFOS = doc/pspp.texi doc/pspp-dev.texi @@ -29,7 +45,7 @@ doc_pspp_TEXINFOS = doc/version.texi \ doc/regression.texi \ doc/utilities.texi \ doc/variables.texi \ - doc/fdl.texi + doc/fdl.texi doc_pspp_dev_TEXINFOS = doc/version-dev.texi \ doc/dev/intro.texi \ @@ -45,20 +61,6 @@ doc_pspp_dev_TEXINFOS = doc/version-dev.texi \ doc/dev/encrypted-file-wrappers.texi \ doc/dev/q2c.texi -if HAVE_DOT -$(PDFS): doc/dev/spv-structure.pdf -$(srcdir)/doc/dev/spv-structure.pdf: doc/dev/spv-structure.gv - dot -Tpdf < $< > $@ - -$(DVIS): doc/dev/spv-structure.eps -$(srcdir)/doc/dev/spv-structure.eps: doc/dev/spv-structure.gv - dot -Teps < $< > $@ -endif -EXTRA_DIST += \ - doc/dev/spv-structure.gv \ - doc/dev/spv-structure.pdf \ - doc/dev/spv-structure.eps - dist_man_MANS += doc/pspp.1 \ doc/psppire.1 @@ -73,35 +75,14 @@ $(srcdir)/doc/tut.texi: $(AM_V_GEN)echo "@set example-dir $(examplesdir)" > $@ -# The SED and AWK filters in this rule, are to work-around some nasty bugs in -# makeinfo version 4.13, which produces broken docbook xml. These workarounds -# are rather horrible and must be removed asap. $(srcdir)/doc/pspp.xml: doc/pspp.texi $(doc_pspp_TEXINFOS) $(top_srcdir)/doc/help-pages-list +if BROKEN_DOCBOOK_XML + touch $@ +else @$(MKDIR_P) doc $(AM_V_GEN)$(MAKEINFO) $(AM_MAKEINFOFLAGS) --docbook -I $(top_srcdir) \ - $(top_srcdir)/doc/pspp.texi -o - \ - | $(SED) -e 's/Time-&-Date/Time-\&-Date/g' \ - -e 's/“/\“/g' \ - -e 's/”/\”/g' \ - -e 's/‘/\‘/g' \ - -e 's/’/\’/g' \ - -e 's/—/\—/g' \ - -e 's/–/\′/g' \ - -e 's/é/\é/g' \ - -e 's/©/\©/g' \ - -e 's/−/\−/g' \ - -e 's/…/\…/g' \ - -e 's/•/\ߦ/g' \ - -e 's/././g' \ - -e 's%\(
]*\)>%\1/>%g' \ - | $(AWK) '/.*.*<\/para>/{x=sub("",""); print; s=1;next}/<\/table>/{print; if (s==1) print ""; s=0; next}1' \ - > $@,tmp - $(AM_V_at)$(XMLLINT) --output /dev/null $@,tmp - $(AM_V_at)cat $(top_srcdir)/doc/help-pages-list | while read node ; do \ - $(XMLLINT) --xpath "$$node" $@,tmp > /dev/null; \ - if test $$? -ne 0 ; then echo "$$node does not appear in $@" ; exit 1; fi ; \ - done - mv $@,tmp $@ + $< -o $@ +endif docbookdir = $(docdir) dist_docbook_DATA = doc/pspp.xml