X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=doc%2FMakefile.am;h=70f456c2a5a4f82db60c62dc601f06fc2a1e4c6b;hb=a6d79528b4812e8eb3927dba3cdd42e6ca51b287;hp=dc432ac63ecc9b8e660fef7bfc1ce19bd113c36f;hpb=22018fce4f2faa4e43d85f419ea48a7d6465d5f3;p=rrdtool.git diff --git a/doc/Makefile.am b/doc/Makefile.am index dc432ac..70f456c 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -12,7 +12,7 @@ POD = bin_dec_hex.pod rrddump.pod rrdgraph_examples.pod rrdre cdeftutorial.pod rrdfetch.pod rrdgraph_graph.pod rrdthreads.pod rrdxport.pod \ rpntutorial.pod rrdfirst.pod rrdgraph_rpn.pod rrdtool.pod \ rrd-beginners.pod rrdinfo.pod rrdtune.pod rrdbuild.pod \ - rrdcgi.pod rrdgraph.pod rrdlast.pod \ + rrdcgi.pod rrdgraph.pod rrdlast.pod rrdlastupdate.pod \ rrdcreate.pod rrdgraph_data.pod rrdresize.pod rrdtutorial.pod @@ -24,13 +24,11 @@ HTML = $(POD:.pod=.html) $(PMP:.pod=.html) PDF = $(MAN:.1=.pdf) # what should go into the distribution -EXTRA_DIST= $(POD) $(HTML) $(TXT) rrdtool-dump.dtd rrdtool-xport.dtd +EXTRA_DIST= $(POD) $(HTML) $(MAN) $(TXT) rrdtool-dump.dtd rrdtool-xport.dtd -# some install rules if the install pat -DOCPREFIX:=$(shell echo "@prefix@" | grep rrd >/dev/null && echo "rrdtool-@VERSION@/") -idocdir = $(prefix)/shared/doc/$(DOCPREFIX)txt +idocdir = $(RRDDOCDIR)/txt idoc_DATA = $(POD) $(TXT) -ihtmldir = $(prefix)/shared/doc/$(DOCPREFIX)html +ihtmldir = $(RRDDOCDIR)/html ihtml_DATA = $(HTML) imandir = $(mandir)/man1 iman_DATA = $(MAN) @@ -44,7 +42,7 @@ all-local: link txt man html-local pod2man --release=$(VERSION) --center=rrdtool $< > $@ .1.txt: - @NROFF@ -man -Tlp $< > $@ + GROFF_NO_SGR=1 @NROFF@ -man -Tlp $< > $@ .1.pdf: @TROFF@ -man $< | ps2pdf - $@ @@ -53,15 +51,12 @@ all-local: link txt man html-local pod2html --infile=$< --outfile=$@ --noindex --htmlroot=. --podpath=. --title=$* RRDs.pod: - ln -s ../bindings/perl-shared/RRDs.pm RRDs.pod + $(LN_S) $(top_srcdir)/bindings/perl-shared/RRDs.pm RRDs.pod RRDp.pod: - ln -s ../bindings/perl-piped/RRDp.pm RRDp.pod + $(LN_S) $(top_srcdir)/bindings/perl-piped/RRDp.pm RRDp.pod -index.html: - rm -f index.html; ln -s rrdtool.html index.html - -link: RRDp.pod RRDs.pod index.html +link: RRDp.pod RRDs.pod man: $(MAN) @@ -72,3 +67,6 @@ txt: $(TXT) pdf-local: $(PDF) pod: $(POD) + +install-data-hook: + cd $(DESTDIR)$(ihtmldir) && rm -f index.html && $(LN_S) rrdtool.html index.html