~ubuntu-branches/ubuntu/hardy/vala/hardy

« back to all changes in this revision

Viewing changes to doc/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge, Marc-Andre Lureau, Sebastian Dröge
  • Date: 2007-10-15 14:37:51 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20071015143751-zy7hqcyjutdyfkg3
Tags: 0.1.4-1
[ Marc-Andre Lureau ]
* New Upstream Version
* debian/patches:
  + Remove patch no longer needed in 0.1.4
* debian/rules
  + Add xsltproc build dependency for the Vala manual.
  + Add libenchant-dev build dependency for enchant test case.
* debian/control, debian/vala-doc.install:
  + Add a "vala-doc" documentation package.

[ Sebastian Dröge ]
* debian/control:
  + Let vala-doc suggest valac/devhelp and don't depend on libvala0.
* debian/libvala-dev.install:
  + Add the new vapicheck utility.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
dist_man_MANS=valac.1
 
1
NULL =
 
2
 
 
3
SUBDIRS = \
 
4
        vala \
 
5
        $(NULL)
 
6
 
 
7
if ENABLE_VAPIGEN
 
8
VAPIGEN_MANS = \
 
9
        gidlgen.1 \
 
10
        vapigen.1 \
 
11
        $(NULL)
 
12
endif
 
13
 
 
14
man_MANS = \
 
15
        valac.1 \
 
16
        $(VAPIGEN_MANS) \
 
17
        $(NULL)
 
18
 
 
19
EXTRA_DIST = \
 
20
        valac.1 \
 
21
        gidlgen.1 \
 
22
        vapigen.1 \
 
23
        $(NULL)
2
24