~ubuntu-branches/ubuntu/saucy/gst123/saucy-proposed

« back to all changes in this revision

Viewing changes to docs/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): أحمد المحمودي (Ahmed El-Mahmoudy), Rogério Brito
  • Date: 2010-05-29 11:23:51 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100529112351-z1ffbyinvriludew
Tags: 0.1.0-1
* New upstream release.
* debian/control:
  + Added good & base plugins to Depends
  + Added ffmpeg, ugly & bad plugins to Recommends
  + Added libgtk2.0-dev, libgstreamer-plugins-base0.10-dev to Build-Deps
* debian/copyright:
  + Updated copyrights
  + Updated my email address

[ Rogério Brito ]
* Include a missing comma in the depends field

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
EXTRA_DIST = gst123.1.doxi gst123defs.doxi
 
2
 
 
3
dist_man_MANS = gst123.1
 
4
 
 
5
DOCS_DIR = ~/public_html/gst123/docs-$(VERSION)
 
6
DOXER = ~/src/beast/doxer/doxer.py
 
7
 
 
8
rebuild-manpage:
 
9
        $(DOXER) doxi2man gst123.1.doxi
 
10
 
 
11
publish-docs:
 
12
        mkdir -p $(DOCS_DIR)
 
13
        for i in $(dist_man_MANS); do \
 
14
          $(DOXER) doxi2html $$i.doxi; \
 
15
          cp $$i.html $(DOCS_DIR); \
 
16
          rm $$i.html ; \
 
17
        done
 
18
        cd $(DOCS_DIR) && find . -type f -print0 | xargs -0 git add