~ubuntu-branches/ubuntu/raring/geany/raring-proposed

« back to all changes in this revision

Viewing changes to doc/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Damián Viano
  • Date: 2009-05-29 21:22:54 UTC
  • mfrom: (1.3.1 upstream) (3.1.2 experimental)
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: james.westby@ubuntu.com-20090529212254-cx6t2a7itgii3p5f
Tags: 0.17-1
* New upstream release
* 20_add_debdiff_as_diff_type.dpatch renamed as
  20_add_debian_specific_filetypes.dpatch, 
  - add .dpatch as a diff filetype
  - add control as a conf filetype
* 20_change_gpl_location.dpatch freshen
* add 20_debian_control_tags.dpatch better handling of debian/control files.
  Thanks to Enrico Tröger. (Closes: #520776)
* debian/copyright Add Frank Lanitz, update years

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
man_MANS=geany.1
2
 
DOCDIR = $(DESTDIR)/$(docdir)
 
2
DOCDIR = $(DESTDIR)$(docdir)
3
3
IMAGE_FILES = images/*.png
4
 
EXTRA_DIST = geany.html geany.css geany.txt geany.1 plugins.dox plugin-symbols.c \
 
4
EXTRA_DIST = geany.html geany.css geany.txt geany.1 plugins.dox pluginsymbols.c \
5
5
                         $(srcdir)/$(IMAGE_FILES)
6
6
 
7
7
pdf: geany.txt
13
13
api-doc: Doxyfile
14
14
        doxygen
15
15
 
 
16
hacking-doc: ../HACKING
 
17
        rst2html -stg --stylesheet=geany.css $^ hacking.html
 
18
 
 
19
# when generating documentation, first try rst2html.py as it is the upstream default
16
20
doc: geany.txt
 
21
        (rst2html.py --version) < /dev/null > /dev/null 2>&1 && \
 
22
        rst2html.py -stg --stylesheet=geany.css $(srcdir)/geany.txt geany.html || \
17
23
        rst2html -stg --stylesheet=geany.css $(srcdir)/geany.txt geany.html
18
24
 
19
25
doc-clean:
40
46
        $(INSTALL_DATA) $(top_srcdir)/COPYING $(DOCDIR)
41
47
        $(INSTALL_DATA) $(top_srcdir)/AUTHORS $(DOCDIR)
42
48
        $(INSTALL_DATA) $(top_srcdir)/TODO $(DOCDIR)
 
49
        $(INSTALL_DATA) $(top_srcdir)/THANKS $(DOCDIR)
43
50
        $(INSTALL_DATA) $(top_srcdir)/scintilla/License.txt $(DOCDIR)/ScintillaLicense.txt
44
51