~ubuntu-branches/ubuntu/trusty/lifelines/trusty

« back to all changes in this revision

Viewing changes to docs/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Felipe Augusto van de Wiel (faw)
  • Date: 2007-08-14 00:02:04 UTC
  • mfrom: (1.1.4 upstream) (3.1.4 gutsy)
  • Revision ID: james.westby@ubuntu.com-20070814000204-mpv5faygl0dgq3qi
Tags: 3.0.61-1
* New upstream release. (Closes: #387856).
* Fixing documentation build problems also fixes FTBFS if built twice in a
  row. (Closes: #424543).
* Adding lynx as a build dependency. This is necessary to generate txt files
  from html, discovered while fixing #424543.
* Upstream fix: charset for gedcom file in unicode. (Closes: #396206).
* Upstream fim: updating documentation about desc-tex2. (Closes: #405501).
* Bumping Standards-Version to 3.7.2 without package changes.
* Dropping local debian patches added upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
# AUTOMAKE_OPTIONS = no-dependencies
4
4
 
5
 
# obsolete manuals: quickref.pdf quickref.ps lifelines.sgml
6
 
 
7
 
MANUALSSRC = ll-reportmanual.xml ll-userguide.xml
8
 
 
9
 
MANUALS_en =     ll-reportmanual.html ll-reportmanual.pdf \
10
 
             ll-reportmanual.txt listops.jpg \
11
 
             ll-userguide.html ll-userguide.pdf \
12
 
             ll-userguide.txt 
13
 
 
14
 
MANUALS_sv = ll-reportmanual.sv.html ll-userguide.sv.html
15
 
 
16
 
MANUALS = $(MANUALS_en) $(MANUALS_sv)
17
 
 
18
 
MANPAGES =   btedit.1 dbverify.1 llines.1
19
 
 
20
 
OLDGENFILES = lifelines.html lifelines.pdf lifelines.ps lifelines.txt
21
 
 
22
 
EXTRA_DIST = $(MANUALSSRC) $(MANUALS) $(MANPAGES)
 
5
###################
 
6
# Manuals
 
7
###################
 
8
 
 
9
MANUALS_en =    ll-reportmanual.html ll-reportmanual.pdf \
 
10
                ll-reportmanual.txt \
 
11
                ll-userguide.html ll-userguide.pdf \
 
12
                ll-userguide.txt ll-devguide.html \
 
13
                ll-index.html ll-index.sv.html
 
14
 
 
15
MANUALS_sv =    ll-reportmanual.sv.html \
 
16
                ll-userguide.sv.html
 
17
 
 
18
MANUALS =       $(MANUALS_en) $(MANUALS_sv)
 
19
 
 
20
IMAGES =        listops.jpg
 
21
 
 
22
MANUALSSRC =    ll-reportmanual.xml \
 
23
                ll-userguide.xml \
 
24
                ll-devguide.xml
 
25
 
 
26
###################
 
27
# Obsolete Manuals
 
28
###################
 
29
 
 
30
OLDGENFILES =   lifelines.html lifelines.txt \
 
31
                lifelines.pdf lifelines.ps
 
32
OLDSRCFILES =   lifelines.sgml
 
33
OLDFILES =      quickref.pdf quickref.ps
 
34
 
 
35
###################
 
36
# Man Pages Manuals
 
37
###################
 
38
 
 
39
MANPAGES =   btedit.1 dbverify.1 llines.1 llexec.1
 
40
 
 
41
###################
 
42
# Rules
 
43
###################
 
44
 
 
45
EXTRA_DIST = $(MANUALSSRC) $(MANUALS) $(MANPAGES) $(IMAGES) lifelines.vim
23
46
man1_MANS = $(MANPAGES)
24
47
 
25
 
CONFIG_CLEAN_FILES = $(OLDGENFILES) $(MANUALS)
 
48
CONFIG_CLEAN_FILES = $(OLDGENFILES) $(OLDSRCFILES) $(OLDFILES) $(MANUALS)
26
49
 
27
50
docdir = $(datadir)/doc/lifelines
28
51
doc_DATA = $(MANUALSSRC) $(MANUALS) 
29
52
dist_pkgdata_DATA = $(MANUALS)
30
53
 
31
 
 
32
54
# sensible values: empty, simple, fancy
33
55
all: @DOCS_TARGET@
34
56
 
42
64
        if [ -f /usr/bin/lynx ] ; then \
43
65
        /usr/bin/lynx -force_html -dump -nolist -width=76 $^ > $@ ;\
44
66
        fi
45